이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll int
#define f first
#define s second
#define pb push_back
using namespace std;
ll n,a[200005],k[200005],dp[5001][5001],ans,ind;
vector<ll>v;
int main(){
std::ios::sync_with_stdio(false);
cin >> n;
for(int i=1; i<=n; i++){
cin >> a[i];
}
for(int i=1; i<=n; i++){
cin >> k[i];
}
for(int i=1; i<=n; i++)dp[i][1] = i;
ans = 1;
ind = 1;
for(int i=1; i<=n; i++){
ll p = -1;
for(int j = i-1; j>=1; j--){
if(__builtin_popcount((a[j]&a[i])) == k[i]){
p = j;
break;
}
}
for(int j=2; j<=n; j++){
if(dp[p][j-1])dp[i][j] = p;
if(dp[i][j] && j > ans){
ans = j;
ind = i;
}
}
}
cout << ans << endl;
while(dp[ind][ans] != ind){
v.pb(ind);
ind = dp[ind][ans];
ans--;
}
v.pb(ind);
for(int i=(int)v.size()-1; i>=0; i--){
cout << v[i] << " ";
}
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... |