# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1108835 | dubabuba | Longest beautiful sequence (IZhO17_subsequence) | C++14 | 1 ms | 336 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int mxn = 5050;
int a[mxn], dp[mxn];
int b[mxn], pr[mxn];
int n;
int main() {
#ifndef LOCAL
freopen("subsequence.in", "r", stdin);
freopen("subsequence.out", "w", stdout);
#endif
cin >> n;
for(int i = 1; i <= n; i++)
cin >> a[i];
for(int i = 1; i <= n; i++)
cin >> b[i];
int id = 1;
for(int i = 1; i <= n; i++) {
dp[i] = 1;
for(int j = 1; j < i; j++) {
int t = a[i] & a[j];
if(__builtin_popcount(t) != b[i])
continue;
if(dp[j] + 1 > dp[i]) {
dp[i] = dp[j] + 1;
pr[i] = j;
}
}
if(dp[id] < dp[i])
id = i;
}
vector<int> ind;
while(id) {
ind.push_back(id);
id = pr[id];
}
reverse(ind.begin(), ind.end());
cout << ind.size() << endl;
for(int i : ind)
cout << i << ' ';
cout << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |