# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
306835 | joylintp | Handcrafted Gift (IOI20_gift) | C++14 | 277 ms | 16992 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"gift.h"
#include<bits/stdc++.h>
using namespace std;
int construct (int n, int r, vector<int> a, vector<int> b, vector<int> x)
{
vector<pair<int, int>> v;
for (int i = 0; i < r; i++)
if (x[i] == 1)
v.push_back({a[i], b[i]});
sort(v.begin(), v.end());
vector<pair<int, int>> same;
for (int i = 0; i < v.size(); i++)
if (same.empty())
same.push_back(v[i]);
else if (same.back().second >= v[i].first)
same.back().second = max(same.back().second, v[i].second);
else
same.push_back(v[i]);
string s(n, '_');
for (auto p : same)
for (int i = p.first; i <= p.second; i++)
s[i] = 'R';
for (int i = 0; i < n; )
if (s[i] == '_')
{
int j = i;
while (j < n && s[j] == '_')
s[j] = "BR"[(j - i) % 2];
i = j;
}
else
i++;
vector<int> v2;
for (auto p : same)
v2.push_back(p.first), v2.push_back(p.second);
for (int i = 0; i < r; i++)
{
if (x[i] == 1)
continue;
if (a[i] == b[i])
return 0;
int pos = lower_bound(v2.begin(), v2.end(), a[i]) - v2.begin();
if (pos < v2.size() && pos % 2 == 0 && b[i] <= v2[pos + 1])
return 0;
}
craft(s);
return 1;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |