# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
590849 | Mazaalai | Longest beautiful sequence (IZhO17_subsequence) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define ff first
#define ss second
#define ALL(x) x.begin(),x.end()
using namespace std;
using PII = pair <int, int>;
using sint = short;
int n, m;
const int N = 1e5+1;
const int M = 1<<10;
PII dp[M][M][11];
int nums[N], par[N];
sint bitCnt[M][N], dif[N];
signed main() {
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> n;
for (int i = 1; i <= n; i++) cin >> nums[i];
for (int i = 1; i <= n; i++) cin >> dif[i];
for (int i = 0; i < M; i++)
for (int j = i; j < M; j++)
bitCnt[i][j] = bitCnt[j][i] = __builtin_popcount(i&j);
int res = 1, ans = 0, lhs, rhs, tar, x;
for (int i = 1; i <= n; i++) {
lhs = nums[i]>>10;
rhs = nums[i]^(lhs<<10);
PII tmp = {0, 0}; // len, par
for (int j = 0; j < M; j++) {
sint &cur = bitCnt[lhs][j]
tar = dif[i]-cur;
if (tar < 0 || tar > 10) continue;
if (dp[j][rhs][tar].ff > tmp.ff) tmp = dp[j][rhs][tar];
}
tmp.ff++;
par[i] = tmp.ss;
tmp.ss = i;
if (tmp.ff > ans) {
res = i;
ans = tmp.ff;
}
for (int j = 0; j < M; j++) {
sint &cur = bitCnt[rhs][j];
if (dp[lhs][j][cur].ff < tmp.ff) dp[lhs][j][cur] = tmp;
}
}
x = ans;
while(res > 0) {
nums[x--] = res;
res = par[res];
}
cout << ans << "\n";
for (int i = 1; i <= ans; i++) cout << nums[i] << " \n"[i==ans];
}