# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
306852 | joylintp | Handcrafted Gift (IOI20_gift) | C++14 | 265 ms | 17632 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 + 1 >= v[i].first)
same.back().second = max(same.back().second, v[i].second);
else
same.push_back(v[i]);
string s;
for (int i = 0; i < same.size(); i++)
{
for (int j = (i == 0 ? 0 : same[i - 1].second + 1); j <= same[i].first; j++)
if (s.empty())
s += 'R';
else if (s.back() == 'R')
s += 'B';
else
s += 'R';
for (int j = same[i].first + 1; j <= same[i].second; j++)
if (s.empty())
s += 'R';
else
s += s.back();
}
for (int i = (s.empty() ? 0 : same.back().second + 1); i < n; i++)
if (s.empty())
s += 'R';
else if (s.back() == 'R')
s += 'B';
else
s += 'R';
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 = upper_bound(v2.begin(), v2.end(), a[i]) - v2.begin() - 1;
if (pos != -1 && 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... |