이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gift.h"
using namespace std;
int construct(int n, int r, vector <int> a, vector <int> b, vector <int> x){
vector <int> maxR(n, 0), cnt(n, 0);
for(int i = 0; i < r; i++){
if (x[i] == 2)
continue;
maxR[a[i]] = max(maxR[a[i]], b[i]);
}
for(int i = 0; i < n; i++){
maxR[i] = max(maxR[i], i);
if (i > 0)
maxR[i] = max(maxR[i], maxR[i - 1]);
if (maxR[i] == i){
cnt[i]++;
}
if (i > 0)
cnt[i] += cnt[i - 1];
}
for(int i = 0; i < r; i++){
if (x[i] == 1)
continue;
if (a[i] == b[i])
return 0;
int tmp = cnt[b[i] - 1];
if (a[i] > 0)
tmp -= cnt[a[i] - 1];
if (tmp < 1)
return 0;
}
string res;
res.push_back('B');
for(int i = 1; i < n; i++)
res.push_back((cnt[i - 1] & 1)? 'R' : 'B');
craft(res);
return 1;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |