# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
167118 | abil | Longest beautiful sequence (IZhO17_subsequence) | C++14 | 25 ms | 23800 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr first
#define sc second
#define pb push_back
#define mk make_pair
#define all(s) s.begin(),s.end()
//#define int long long
using namespace std;
const int N = (1e6 + 12);
const int mod = (1e9 + 7);
const int INF = (0x3f3f3f3f);
int a[N], k[N];
vector<int > vec[N];
main()
{
int n;
bool f = true;
cin >> n;
for(int i = 1;i <= n; i++){
scanf("%d", &a[i]);
if(a[i] >= (1 << 8)){
f = false;
}
}
for(int j = 1;j <= n; j++){
scanf("%d", &k[j]);
}
vector<int > ans;
if(f){
for(int i = n;i >= 1; i--){
for(int j = 1;j < (1 << 8); j++){
if(vec[a[i]].size() >= vec[j].size() && __builtin_popcount((a[i] & j)) == k[i]){
vec[j] = vec[a[i]];
vec[j].pb(i);
}
}
vec[a[i]].pb(i);
if(vec[a[i]].size() > ans.size()){
ans = vec[i];
}
}
cout << ans.size() << endl;
sort(all(ans));
for(auto to : ans){
cout << to << " ";
}
return 0;
}
for(int i = n;i >= 1; i--){
for(int j = i + 1;j <= n; j++){
if(vec[i].size() <= vec[j].size() && __builtin_popcount((a[i] & a[j])) == k[j]){
vec[i] = vec[j];
vec[i].pb(i);
}
}
if(vec[i].size() > ans.size()){
ans = vec[i];
}
}
cout << ans.size() << endl;
reverse(all(ans));
for(auto to : ans){
cout << to << " ";
}
}
컴파일 시 표준 에러 (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... |