# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
651388 | Alan | Handcrafted Gift (IOI20_gift) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gift.h"
using namespace std;
int construct(int n, int m, vector<int> a, vector<int> b, vector<int> x) {
string s (n, 0);
vector<int> d (n+1), ps (n+1);
for (int i = 0; i < m; i++) if (x[i] == 1) {
d[a[i]]++;
d[b[i]+1]--;
}
bool b = true;
for (int i = 0; i < n; i++) {
if (!d[i]) b = !b;
s[i] = b ? 'R' : 'B';
ps[i] += s[i] == 'B';
if (i) ps[i] += ps[i-1];
}
for (int i = 0; i < m; i++) if (x[i] == 2) {
int diff = ps[b[i]] - (a[i] ? ps[a[i]] : 0);
if (diff == 0 || diff == b[i]-a[i]+1) return 0;
}
craft(s);
return 1;
}