이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 5050 , inf = 1e9 + 199;
int dp[N],ind[N];
int32_t main()
{
int n;
cin>>n;
assert(n <= 5000);
vector<int>a(n+1),k(n+1);
for(int i=0;i<n;i++){
cin>>a[i];
}
for(int i=0;i<n;i++){
cin>>k[i];
}
dp[1]=1;
for(int i=2;i<=n;i++){
int maxi = 0 , indd = 1;
if(__builtin_popcount(a[i-1]) < k[i-1]){
continue;
}
for(int j=i-1;j>=1;j--){
if(__builtin_popcount((a[i-1]&a[j-1])) == k[i-1]){
if(dp[j]+1 > maxi) {
maxi = dp[j]+1;
indd = j;
}
}
}
if(maxi > 0){
dp[i] = maxi;
ind[i] = indd;
}
else{
dp[i]=1;
ind[i] = 0;
}
}
int maxi = 0 , indd = 1;
for(int i=1; i<=n; i++){
if(dp[i] >= maxi){
maxi = dp[i];
indd = i;
}
}
vector<int> res;
while(indd != 0){
res.push_back(indd);
indd = ind[indd];
}
cout<<res.size()<<endl;
sort(res.begin(), res.end());
for(int i:res){
cout<<i<<" ";
}
}
/*
*/
# | 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... |