# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1012095 | codefox | Longest beautiful sequence (IZhO17_subsequence) | C++14 | 0 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define pii pair<int, int>
#define pipii pair<int, pii>
#pragma GCC optimize("Ofast")
#pragma GCC target("popcnt")
int N = 1<<20;
int main()
{
//freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
int n;
cin >> n;
vector<bitset<20>> a(n);
vector<int> k(n);
for (int i = 0; i < n; i++) cin >> a[i];
for (int i = 0; i < n; i++) cin >> k[i];
vector<pii> best(n);
for (int i = 0; i < n; i++)
{
best[i] = {1, -1};
for (int j = 0; j < i; j++)
{
if ((a[j]&a[i]).count()==k[i])
{
if (best[i].first<best[j].first+1)
{
best[i] = {best[j].first+1, j};
}
}
}
}
int mx = 0;
int nn = 0;
for (int i = 0; i < n; i++)
{
if (best[i].first>mx)
{
mx = best[i].first;
nn = i;
}
}
cout << mx << "\n";
vector<int> sol;
while (nn != -1)
{
sol.push_back(nn);
nn = best[nn].second;
}
reverse(sol.begin(), sol.end());
for (int ele:sol) cout << ele+1 << " ";
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... |