이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<vector>
#include<algorithm>
#include<cassert>
#define MASK(x) (1LL << (x))
#define BIT(x, i) (((x) >> (i)) & 1)
using namespace std;
const int N = (int)1e5 + 10;
int n;
int a[N], k[N];
int trace[N];
int maxx = 0;
int f1[N];
pair<int, int> f[MASK(20)];
int main(void) {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
//freopen("a.in", "r", stdin); freopen("a.out", "w", stdout);
cin >> n;
for(int i = 1; i <= n; i++) {
cin >> a[i];
maxx = max(a[i], maxx);
}
for(int i = 1; i <= n; i++) {
cin >> k[i];
}
if(n <= 5000) {
int p = 1;
trace[0] = -1;
for(int i = 1; i <= n; i++) {
f1[i] = 1;
trace[i] = -1;
for(int j = 1; j < i; j++) if(__builtin_popcount(a[i] & a[j]) == k[i])
if(f1[i] < f1[j] + 1) {
f1[i] = f1[j] + 1;
trace[i] = j;
}
if(f1[i] > f1[p]) p = i;
}
vector<int> ans;
for(int i = p; i != -1; i = trace[i]) ans.push_back(i);
reverse(ans.begin(), ans.end());
cout << ans.size() << '\n';
for(int i = 0; i < (int)ans.size(); i++) cout << ans[i] << ' ';
}
else if(*max_element(a + 1, a + n + 1) < MASK(8)) {
int max_log = 0;
while(maxx >= MASK(max_log)) max_log++;
for(int i = 0; i < MASK(max_log); i++) f[i] = make_pair(0, -1);
int p = -1;
trace[0] = -1;
for(int i = 1; i <= n; i++) {
trace[i] = -1;
if(f[a[i]].first < 1) f[a[i]] = make_pair(1, i);
for(int mask = 0; mask < MASK(max_log); mask++) if(__builtin_popcount(mask & a[i]) == k[i])
if(f[a[i]].first < f[mask].first + 1 && f[mask].second < i) {
trace[i] = f[mask].second;
f[a[i]] = make_pair(f[mask].first + 1, i);
}
if(p == -1 || f[a[i]] > f[p]) p = a[i];
}
vector<int> ans;
for(int i = f[p].second; i != -1; i = trace[i]) ans.push_back(i);
reverse(ans.begin(), ans.end());
cout << ans.size() << '\n';
for(int i = 0; i < (int)ans.size(); i++) cout << ans[i] << ' ';
}
else {
return 1;
}
}
# | 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... |