이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Source: https://usaco.guide/general/io
#include <bits/stdc++.h>
using namespace std;
int N;
int A[100005];
int K[100005];
int BC[1<<10][1<<10];
pair<int,int> dp[1<<10][1<<10][25];
int prv[100005];
int main() {
for (int i = 0; i < (1<<10); i++) {
for (int j = 0; j < (1<<10); j++) {
BC[i][j] = __builtin_popcount(i & j);
}
}
cin >> N;
for (int i = 0; i < N; i++) {
cin >> A[i];
}
for (int i = 0; i < N; i++) {
cin >> K[i];
}
iota(prv,prv+N,0);
int longest = 0;
int best = -1;
for (int i = 0; i < N; i++) {
int l = A[i] >> 10;
int r = A[i] % (1<<10);
int lbs = 1;
for (int j = 0; j < (1<<10); j++) {
int k = K[i]-BC[j][l];
if (k < 0 || k > 10) continue;
if (dp[j][r][k].first + 1 > lbs) {
lbs = dp[j][r][k].first + 1;
prv[i] = dp[j][r][k].second;
}
}
if (lbs > longest) {
longest = lbs;
best = i;
}
for (int j = 0; j < (1<<10); j++) {
int k = BC[r][j];
if (k < 0 || k > 10) continue;
if (lbs > dp[l][j][k].first) {
dp[l][j][k].first = lbs;
dp[l][j][k].second = i;
}
}
}
vector<int> res;
while (true) {
res.push_back(best);
if (prv[best] == best) break;
best = prv[best];
}
reverse(res.begin(),res.end());
cout << longest << endl;
for (auto e : res) {
cout << e << " ";
}
}
# | 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... |