# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
299675 | BeanZ | Longest beautiful sequence (IZhO17_subsequence) | C++14 | 4 ms | 4992 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// I_LOVE_LPL
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
const int N = 1e5 + 5;
ll a[N], k[N], dp[N], par[N][50];
set<ll, greater<ll>> s[N];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
if (fopen("A.inp", "r")){
freopen("test.inp", "r", stdin);
freopen("test.ans", "w", stdout);
}
ll n;
cin >> n;
ll ans = 0;
for (int i = 1; i <= n; i++) cin >> a[i];
for (int i = 1; i <= n; i++) cin >> k[i], s[k[i]].insert(i);
for (int i = 1; i <= n; i++) dp[i] = 1;
for (int i = 1; i <= n; i++){
for (int j = 1; j < i; j++){
ll x = a[i] & a[j];
auto it = s[__builtin_popcount(x)].lower_bound(dp[j] + 1);
if (it != s[__builtin_popcount(x)].end()){
dp[i] = max(dp[i], (*it));
par[i][(*it)] = j;
}
}
ans = max(ans, dp[i]);
}
cout << ans << endl;
ll cur = -1;
for (int i = 1; i <= n; i++) if (dp[i] == ans && cur == -1) cur = i;
vector<ll> mem;
mem.push_back(cur);
while (ans > 1){
cur = par[cur][ans];
mem.push_back(cur);
ans--;
}
reverse(mem.begin(), mem.end());
for (auto j : mem) cout << j << " ";
}
/*
5
5 3 5 3 5
10 1 20 1 20
4
1 2 3 4
10 0 1 0
2
8 9
20 0
*/
컴파일 시 표준 에러 (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... |