# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1000288 | Hanksburger | Longest beautiful sequence (IZhO17_subsequence) | C++17 | 1 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int dp[100005], pre[100005], a[100005], k[100005], ind[260];
stack<int> s;
int bitCount(int x, int y)
{
int cnt=0;
for (int i=0; i<8; i++)
if (x&y&(1<<i))
cnt++;
return cnt;
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, cur, mx=0;
cin >> n;
for (int i=1; i<=n; i++)
cin >> a[i];
for (int i=1; i<=n; i++)
cin >> k[i];
for (int i=1; i<=n; i++)
{
dp[i]=1;
for (int j=0; j<256; j++)
{
if (ind[j] && bitCount(a[i], j)==k[i])
{
if (dp[i]<dp[ind[j]]+1)
{
dp[i]=dp[ind[j]]+1;
pre[i]=ind[j];
}
}
}
if (mx<dp[i])
{
mx=dp[i];
cur=i;
}
if (dp[ind[a[i]]]<dp[i])
ind[a[i]]=i;
}
cout << dp[cur] << '\n';
while (cur)
{
s.push(cur);
cur=pre[cur];
}
while (!s.empty())
{
cout << s.top() << ' ';
s.pop();
}
}
컴파일 시 표준 에러 (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... |