# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1113922 | Dan4Life | 건물 4 (JOI20_building4) | C++17 | 3 ms | 12624 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = (int)1e6+10;
int n, ans[N], a[2][N], dp[2][2][N];
int main(){
ios_base::sync_with_stdio(false); cin.tie(0);
cin >> n;
for(int i = 0; i < 2*n; i++) cin >> a[0][i];
for(int i = 0; i < 2*n; i++) cin >> a[1][i];
// dp i j k: i= min/max As used j = placed A/B here, till kth index
dp[0][0][0] = 1;
dp[1][0][0] = 1;
dp[0][1][0] = 0;
dp[1][1][0] = 0;
for(int i = 1; i < 2*n; i++)
dp[0][0][i]=dp[0][1][i]=2*n;
for(int i = 1; i < 2*n; i++)
for(int k : {0,1}) for(int j : {0,1})
if(a[j][i-1] <= a[k][i])
dp[0][k][i] = min(dp[0][k][i],dp[0][j][i-1]+!k),
dp[1][k][i] = max(dp[1][k][i],dp[1][j][i-1]+!k);
for(int k : {0,1}){
if(dp[0][k][2*n-1]<=n and dp[1][k][2*n-1]>=n){
ans[2*n-1] = k; int sum = n-!k;
for(int i = 2*n-2; i>=0; i--){
int cur = (dp[0][0][i]>sum or dp[1][0][i]<sum or dp[0][0][i]>dp[1][0][i]);
ans[i]=cur; sum-=!cur;
}
for(int i = 0; i < 2*n; i++)
cout << "AB"[ans[i]]; cout << "\n";
return 0;
}
}
cout << -1 << "\n";
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |