QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#616969 | #9221. Missing Boundaries | ucup-team5062# | WA | 68ms | 11600kb | C++20 | 3.2kb | 2024-10-06 13:17:08 | 2024-10-06 13:17:12 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
// ================================================================================ Base Function
vector<pair<int, int>> GetOutside(int L, vector<pair<int, int>> Range) {
Range.push_back(make_pair(0, 0));
Range.push_back(make_pair(L + 1, L + 1));
sort(Range.begin(), Range.end());
// Get Return
vector<pair<int, int>> ret;
for (int i = 1; i < (int)Range.size(); i++) {
int cl = Range[i - 1].second + 1;
int cr = Range[i - 0].first - 1;
if (cl <= cr) ret.push_back(make_pair(cl, cr));
}
return ret;
}
bool CheckOverlap(vector<pair<int, int>> Range) {
sort(Range.begin(), Range.end());
int maxv = 0;
for (int i = 0; i < (int)Range.size(); i++) {
if (maxv >= Range[i].first) return false;
maxv = max(maxv, Range[i].second);
}
return true;
}
// ================================================================================ Solve Function
string Solve(int N, int L, vector<pair<int, int>> Range) {
// Step 1. First Check
vector<pair<int, int>> Cand;
vector<pair<int, int>> Cand2;
int CountFree = 0;
for (int i = 0; i < N; i++) {
if (Range[i] == make_pair(-1, -1)) CountFree += 1;
else if (Range[i].first == -1) Cand.push_back(make_pair(Range[i].second, Range[i].second));
else if (Range[i].second == -1) Cand.push_back(make_pair( Range[i].first, Range[i].first));
else {
Cand.push_back(Range[i]);
Cand2.push_back(Range[i]);
}
}
if (CheckOverlap(Cand) == false) return "NIE";
// Step 2. Get Ranges
vector<pair<int, int>> Free = GetOutside(L, Cand2);
vector<vector<pair<int, char>>> List(Free.size(), vector<pair<int, char>>(0));
for (int i = 0; i < N; i++) {
if (Range[i] == make_pair(-1, -1)) continue;
if (Range[i].first == -1) {
int pos = Range[i].second;
int idx = lower_bound(Free.begin(), Free.end(), make_pair(pos, (1 << 30))) - Free.begin();
idx--;
List[idx].push_back(make_pair(pos, 'R'));
}
if (Range[i].second == -1) {
int pos = Range[i].first;
int idx = lower_bound(Free.begin(), Free.end(), make_pair(pos, (1 << 30))) - Free.begin();
idx--;
List[idx].push_back(make_pair(pos, 'L'));
}
}
// Step 3. Get Max
int MaxVal = L;
int MinVal = 0;
for (int i = 0; i < (int)Cand.size(); i++) MaxVal -= (Cand[i].second - Cand[i].first + 1);
for (int i = 0; i < (int)Free.size(); i++) {
if (List[i].size() == 0) MinVal += 1;
else {
int cl = Free[i].first;
int cr = Free[i].second;
int x = (int)List[i].size() - 1;
if (List[i][0].first != cl && List[i][0].second == 'L') MinVal += 1;
if (List[i][x].first != cr && List[i][x].second == 'R') MinVal += 1;
}
}
// Step 4. Final Check
if (MinVal <= CountFree && CountFree <= MaxVal) return "TAK";
return "NIE";
}
// ================================================================================ Solve Function
int main() {
int T; cin >> T;
for (int t = 1; t <= T; t++) {
int N; scanf("%d", &N);
int L; scanf("%d", &L);
vector<pair<int, int>> Ranges(N, make_pair(0, 0));
for (int i = 0; i < N; i++) scanf("%d%d", &Ranges[i].first, &Ranges[i].second);
cout << Solve(N, L, Ranges) << endl;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3608kb
input:
3 4 51 1 -1 11 50 -1 -1 -1 10 3 2 -1 -1 -1 -1 -1 -1 2 3 1 2 2 3
output:
TAK NIE NIE
result:
ok 3 lines
Test #2:
score: -100
Wrong Answer
time: 68ms
memory: 11600kb
input:
1 200000 1000000000 490669427 -1 224278942 224287156 821104480 -1 861696576 861702036 807438935 807440055 574078002 574083717 465630141 -1 195378188 -1 -1 13500961 -1 977536179 92893115 -1 -1 661145418 -1 215804863 -1 685338515 544348999 -1 465532902 -1 130346949 -1 -1 526666304 635604584 635605404 ...
output:
NIE
result:
wrong answer 1st lines differ - expected: 'TAK', found: 'NIE'