# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1000351 | Hanksburger | Longest beautiful sequence (IZhO17_subsequence) | C++17 | 3322 ms | 48144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int dp[100001], pre[100001], ind[1024][1024][11], a[100001], k[100001];
stack<int> s;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, cur, ans=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++)
{
int cnt1=0, cnt2=0;
for (int j=0; j<10; j++)
if (a[i]&(1<<j))
cnt1++;
for (int j=10; j<20; j++)
if (a[i]&(1<<j))
cnt2++;
dp[i]=1;
for (int j=0; j<1024; j++)
{
int cnt=0;
for (int l=0; l<10; l++)
if (a[i]&j&(1<<l))
cnt++;
if (k[i]-cnt<0 || k[i]-cnt>cnt2)
continue;
int index=ind[j][a[i]>>10][k[i]-cnt];
if (index && dp[i]<dp[index]+1)
{
dp[i]=dp[index]+1;
pre[i]=index;
//cout << "dp " << i << " = dp " << index << " + 1 = " << dp[i] << "\n";
//cout << "pre " << i << " = " << index << '\n';
//cout << '\n';
}
}
for (int j=0; j<1024; j++)
{
int cnt=0;
for (int l=0; l<10; l++)
if ((a[i]>>10)&j&(1<<l))
cnt++;
int index=ind[a[i]%(1<<10)][j][cnt];
if (!index || dp[index]<dp[i])
{
ind[a[i]%(1<<10)][j][cnt]=i;
//if (j<=15)
// cout << "ind " << a[i]%(1<<10) << ' ' << j << ' ' << cnt << " = " << i << '\n';
}
}
if (ans<dp[i])
{
ans=dp[i];
cur=i;
}
}
cout << ans << '\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... |