QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#579561 | #9221. Missing Boundaries | HDU-T12# | WA | 37ms | 9632kb | C++20 | 2.7kb | 2024-09-21 15:16:04 | 2024-09-21 15:16:05 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define X first
#define Y second
#define umap unordered_map
using ll = long long;
using ull = unsigned long long;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int maxn = 2e5 + 5, mod = 1e9 + 7, maxp = 31, inf = 1e9;
const ll INF = 1e18;
const double eps = 1e-6;
struct node {
int l, r, Min;
};
void solve() {
int n, L;
cin >> n >> L;
int cnt = 0;
vector<node> p;
p.push_back({0, 0});
vector<node> a(n + 1);
for(int i = 1; i <= n; i++) {
cin >> a[i].l >> a[i].r;
if(a[i].l == -1 && a[i].r == -1) {
cnt += 1;
} else if(a[i].l == -1) {
a[i].Min = a[i].r;
} else if(a[i].r == -1) {
a[i].Min = a[i].l;
} else {
a[i].Min = min(a[i].l, a[i].r);
}
if(a[i].l != -1 || a[i].r != -1) {
p.push_back({a[i].l, a[i].r, a[i].Min});
}
}
//cout << "***" << p.size() << '\n';
if(p.size() == 1) {
if(n <= L) {
cout << "TAK" << '\n';
} else {
cout << "NIE" << '\n';
}
return;
}
int siz = p.size() - 1;
sort(p.begin() + 1, p.end(), [&](node x, node y) -> bool {
return x.Min < y.Min;
});
int needNum = 0;
int canNum = 0;
for(int i = 1; i <= siz; i++) {
if(p[i].l != -1 || p[i].r != -1) continue;
if(p[i].l > p[i].r) {
//cout << "@" << p[i].first << " " << p[i].second;
return cout << "NIE" << '\n', void();
}
}
for(int i = 1; i < siz; i++) {
//cout << "@" << p[i].l << " " << p[i].r << '\n';
int lft = p[i].r;
int rgt = p[i + 1].l;
if(lft != -1 && rgt != -1) {
if(lft >= rgt) {
return cout << "NIE" << '\n', void();
}
int dis = rgt - lft - 1;
if(dis) {
needNum += 1;
canNum += dis;
}
} else if(lft == -1 && rgt == -1) {
int dis = p[i + 1].r - p[i].l - 1;
if(dis < 2) {
return cout << "NIE" << '\n', void();
}
canNum += (dis - 2) / 2;
} else if(lft == -1) {
canNum += p[i + 1].r - p[i].l - 1;
} else {
canNum += p[i + 1].r - p[i].r - 1;
}
//cout << "canNum" << canNum << '\n';
}
if(p[1].l != 1) {
if(p[1].l == -1) {
canNum += p[1].r - 1;
} else {
needNum += 1;
canNum += p[1].l - 1;
}
}
if(p[siz].r != L) {
if(p[siz].r == -1) {
canNum += L - p[siz].l;
} else {
needNum += 1;
canNum += L - p[siz].r;
}
}
if(cnt >= needNum && cnt <= canNum) {
cout << "TAK" << '\n';
} else {
//cout << "&" << cnt << " " << needNum << " " << canNum << '\n';
cout << "NIE" << '\n';
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int tt = 1;
cin >> tt;
while (tt--) solve();
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3816kb
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: 0
Accepted
time: 37ms
memory: 9420kb
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:
TAK
result:
ok single line: 'TAK'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3560kb
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 #4:
score: -100
Wrong Answer
time: 28ms
memory: 9632kb
input:
1 197838 400000 34167 34169 352180 -1 235963 -1 -1 -1 160401 160405 347288 -1 270353 270354 214502 214504 183243 183245 -1 -1 -1 36193 -1 -1 -1 17557 273498 273500 269137 -1 395099 395100 285515 285518 -1 -1 71041 71042 324060 -1 -1 385151 -1 379645 -1 -1 -1 185142 -1 191584 89259 89261 328347 32834...
output:
NIE
result:
wrong answer 1st lines differ - expected: 'TAK', found: 'NIE'