# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
885226 | alex_2008 | Longest beautiful sequence (IZhO17_subsequence) | C++14 | 54 ms | 6644 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 1e5 + 10;
int a[N], k[N], dp[N];
int to[500];
int bitCount[(1 << 20)];
int way[N];
void precalc() {
bitCount[0] = 0;
for (int i = 1; i < (1 << 20); i++) {
bitCount[i] = bitCount[i / 2] + (i % 2);
}
}
int main() {
precalc();
int n;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 0; i < n; i++) {
cin >> k[i];
}
if (n <= 5000) {
dp[0] = 1;
way[0] = -1;
for (int i = 1; i < n; i++) {
dp[i] = 1;
way[i] = -1;
for (int j = i - 1; j >= 0; j--) {
if (bitCount[(a[i] & a[j])] == k[i] && dp[i] < dp[j] + 1) {
dp[i] = dp[j] + 1;
way[i] = j;
}
}
}
int mxdp_ind = 0;
for (int i = 1; i < n; i++) {
if (dp[i] > dp[mxdp_ind]) {
mxdp_ind = i;
}
}
vector <int> ans;
int ind = mxdp_ind;
while (ind != -1) {
ans.push_back(ind + 1);
ind = way[ind];
}
cout << (int)ans.size() << "\n";
reverse(ans.begin(), ans.end());
for (int num : ans) {
cout << num << " ";
}
}
else {
for (int i = 0; i < 256; i++) {
to[i] = -1;
}
dp[0] = 1;
way[0] = -1;
to[a[0]] = 0;
for (int i = 1; i < n; i++) {
dp[i] = 1;
way[i] = -1;
for (int j = 0; j < 256; j++) {
if (to[j] == -1) continue;
if (bitCount[(j & a[i])] != k[i]) continue;
if (dp[to[j]] + 1 > dp[i]) {
dp[i] = dp[to[j]] + 1;
way[i] = to[j];
}
}
to[a[i]] = i;
}
int mxdp_ind = 0;
for (int i = 1; i < n; i++) {
if (dp[i] > dp[mxdp_ind]) {
mxdp_ind = i;
}
}
vector <int> ans;
int ind = mxdp_ind;
int cnt = 10;
while (ind != -1) {
ans.push_back(ind + 1);
ind = way[ind];
}
cout << (int)ans.size() << "\n";
reverse(ans.begin(), ans.end());
for (int num : ans) {
cout << num << " ";
}
}
}
컴파일 시 표준 에러 (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... |