This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <stdio.h>
#include <bits/stdc++.h>
#define pb push_back
#define pf push_front
#define pp pop_back
#define sz(a) (int)(a.size())
#define mp make_pair
#define F first
#define S second
#define next _next
#define prev _prev
#define left _left
#define right _right
#define y1 _y1
#define all(x) x.begin(), x.end()
#define what_is(x) #x << " is " << (x)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int N = (int)1e6 + 123;
const ll INF = (ll)1e18 + 123;
const int inf = (int)1e9 + 123;
const int MOD = (int)1e9 + 7;
void megaRandom() {
unsigned int FOR;
asm("rdtsc" : "=A"(FOR));
srand(FOR);
}
int n, dp[N], pr[N];
int a[N], b[N];
int main() {
megaRandom();
cin >> n;
for(int i = 1; i <= n; i ++) cin >> a[i];
for(int i = 1; i <= n; i ++) cin >> b[i];
int res = 0, res_p = -1;
for(int i = 1; i <= n; i ++) {
dp[i] = 1;
for(int j = 0; j < i; j ++) {
if(__builtin_popcount(a[j] & a[i]) == b[i] && dp[j] + 1 > dp[i]) {
dp[i] = dp[j] + 1;
pr[i] = j;
}
}
if(res < dp[i]) {
res = dp[i], res_p = i;
}
}
cout << res << "\n";
vector<int> v;
while(res_p > 0) {
v.pb(res_p);//cout << res_p << ' ';
res_p = pr[res_p];
}
for(auto aa : v)
cout << aa << ' ';
return 0;
}
# | 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... |