# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1014976 | Thunnus | Longest beautiful sequence (IZhO17_subsequence) | C++17 | 0 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using i64 = long long;
#define int i64
#define vi vector<int>
#define vvi vector<vi>
#define vb vector<bool>
#define pii pair<int, int>
#define fi first
#define se second
#define sz(x) (int)(x).size()
void setIO(string s){
ios_base::sync_with_stdio(false); cin.tie(0);
freopen((s+".in").c_str(), "r", stdin);
freopen((s+".out").c_str(), "w", stdout);
}
signed main() {
//setIO("sequence");
ios_base::sync_with_stdio(false); cin.tie(0);
int n;
pii best = {1, 0};
cin >> n;
vi a(n), k(n);
for(int &i : a)
cin >> i;
for(int &i : k)
cin >> i;
vi prev(n), dp(n, 1), ans;
iota(prev.begin(), prev.end(), 0);
for(int i = 1; i < n; i++){
for(int j = 0; j < n; j++){
if(__builtin_popcount(a[j] & a[i]) == k[i] && dp[j] + 1 > dp[i]){
dp[i] = dp[j] + 1;
prev[i] = j;
if(dp[i] > best.fi)
best = {dp[i], i};
}
}
}
while(prev[best.se] != best.se){
ans.emplace_back(best.se + 1);
best.se = prev[best.se];
}
ans.emplace_back(best.se + 1);
reverse(ans.begin(), ans.end());
cout << best.fi << "\n";
for(int i : ans){
cout << i << " ";
}
return 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... |