# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
252027 | Bruteforceman | 건물 4 (JOI20_building4) | C++11 | 422 ms | 38288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
int a[2][500010 * 2];
int main(int argc, char const *argv[])
{
int n;
scanf("%d", &n);
for(int x = 0; x < 2; x++) {
for(int i = 0; i < 2*n; i++) {
scanf("%d", &a[x][i]);
}
}
vector <int> v;
if(a[0][0] <= a[1][0]) {
v.push_back(0);
} else {
v.push_back(1);
}
for(int i = 0; i < 2*n - 1; i++) {
int opt = -1;
for(int x = 0; x < 2; x++) {
if(a[v.back()][i] <= a[x][i + 1]) {
if(opt == -1 || a[x][i + 1] < a[opt][i + 1]) {
opt = x;
}
}
}
if(opt == -1) {
puts("-1");
exit(0);
}
v.push_back(opt);
}
vector <int> p (2*n + 1);
vector <int> nxt (2*n + 1);
p[2*n] = 0;
for(int i = 2*n-1; i >= 0; i--) {
p[i] = p[i + 1] + ((v[i] == 0) ? -1 : 1);
if(i == 2*n - 1 || a[v[i] ^ 1][i] <= a[v[i + 1]][i + 1]) {
nxt[i] = i;
} else {
if(a[v[i] ^ 1][i] <= a[v[i + 1] ^ 1][i + 1]) nxt[i] = nxt[i + 1];
else nxt[i] = -1;
}
if(a[v[i]][i] > a[v[i] ^ 1][i]) {
nxt[i] = -1;
}
}
int sum = p[0];
int last = 2*n;
for(int i = 2*n - 1; i >= 0; i--) {
if(nxt[i] == -1) continue;
int c = min(nxt[i] + 1, last);
int profit = p[c] - p[i];
if(abs(sum + 2*profit) < abs(sum)) {
sum += 2*profit;
for(int j = i; j < c; j++) {
v[j] ^= 1;
}
last = i;
}
}
if(sum == 0) {
for(int i = 0; i < 2*n; i++) printf("%c", v[i] + 'A');
printf("\n");
} else printf("-1\n");
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |