# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
167747 | abil | Longest beautiful sequence (IZhO17_subsequence) | C++14 | 6079 ms | 12764 KiB |
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 <bits/stdc++.h>
#define fr first
#define sc second
#define pb push_back
#define mk make_pair
#define all(s) s.begin(),s.end()
//#define int long long
using namespace std;
const int N = ((1 << 20) + 12);
const int mod = (1e9 + 7);
const int INF = (0x3f3f3f3f);
int a[N], dp[N], path[N], k[N], bit[N], ind[N];
main()
{
int n;
scanf("%d", &n);
for(int i = 1;i <= n; i++){
scanf("%d", &a[i]);
}
for(int i = 1;i <= n; i++){
scanf("%d", &k[i]);
}
for(int i = 0;i < (1 << 20); i++){
bit[i] = __builtin_popcount(i);
}
for(int i = 1;i <= n; i++){
int mx = 1, id = 0;
for(int j = 0;j < (1 << 20); j++){
if(bit[(j & a[i])] == k[i]){
if(dp[j] + 1 > mx){
mx = dp[j] + 1;
id = ind[j];
}
}
}
if(mx > dp[a[i]]){
dp[a[i]] = mx;
path[i] = id;
ind[a[i]] = i;
}
}
int mx = 0, val;
for(int i = 0; i < (1 << 20); i++){
if(dp[i] > mx){
mx = dp[i];
val = ind[i];
}
}
printf("%d\n", mx);
vector<int > ans;
while(val){
ans.pb(val);
val = path[val];
}
reverse(all(ans));
for(auto to : ans){
printf("%d ", to);
}
}
Compilation message (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... |