QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#409189 | #7680. Subway | light_ink_dots | WA | 1ms | 4088kb | C++14 | 1.3kb | 2024-05-11 20:14:59 | 2024-05-11 20:15:00 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int main() {
static const int maxn = 60, B = 10;
int n, mx = 0;
scanf("%d", &n);
struct point {
int x, y, a;
};
static point p[maxn];
int mn=1e9;
for (int i = 1; i <= n; i++) scanf("%d %d %d", &p[i].x, &p[i].y, &p[i].a), mx = max(mx, p[i].a),mn=min(mn,p[i].a);
sort(p + 1, p + n + 1,
[](const point x, const point y) { return x.x + 2 * B * x.y < y.x + 2 * B * y.y; });
printf("%d\n", mx);
if(n==50){
// cout<<mx<<" "<<mn<<endl;
// for(int i=1;i<=n;i++) p[i].a=mx;
}
for (int l = 1; l <= mx; l++) {
int dx = (1 - 2 * (B + l)) * B , dy = B + l;
vector<pair<int, int>> ans;
for (int i = 1; i <= n; i++) {
if(p[i].a>=l)
ans.emplace_back(p[i].x, p[i].y);
ans.emplace_back(p[i].x + dx, p[i].y + dy);
}
if(n==50&&l==1){
// printf("%d", (int)ans.size());
// for (auto p : ans) printf(" %d %d", p.first, p.second);
// printf("\n");
}
// if(n==50&&l==2) continue;
printf("%d", (int)ans.size());
for (auto p : ans) printf(" %d %d", p.first, p.second);
printf("\n");
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3880kb
input:
3 1 2 1 2 1 2 3 3 2
output:
2 6 2 1 -208 12 1 2 -209 13 3 3 -207 14 5 2 1 -228 13 -229 14 3 3 -227 15
result:
ok ok Sum L = 11
Test #2:
score: 0
Accepted
time: 0ms
memory: 3804kb
input:
1 1 1 1
output:
1 2 1 1 -209 12
result:
ok ok Sum L = 2
Test #3:
score: 0
Accepted
time: 0ms
memory: 4088kb
input:
1 1 1 50
output:
50 2 1 1 -209 12 2 1 1 -229 13 2 1 1 -249 14 2 1 1 -269 15 2 1 1 -289 16 2 1 1 -309 17 2 1 1 -329 18 2 1 1 -349 19 2 1 1 -369 20 2 1 1 -389 21 2 1 1 -409 22 2 1 1 -429 23 2 1 1 -449 24 2 1 1 -469 25 2 1 1 -489 26 2 1 1 -509 27 2 1 1 -529 28 2 1 1 -549 29 2 1 1 -569 30 2 1 1 -589 31 2 1 1 -609 32 2 1...
result:
ok ok Sum L = 100
Test #4:
score: -100
Wrong Answer
time: 1ms
memory: 3744kb
input:
50 662 -567 48 728 -120 7 307 669 27 -885 -775 21 100 242 9 -784 -537 41 940 198 46 736 -551 30 -449 456 16 -945 382 18 -182 810 49 213 187 44 853 245 48 617 -305 19 -81 261 3 617 208 8 -548 -652 6 -888 -667 14 -371 -812 43 202 -702 10 -668 -725 5 961 -919 33 -870 -697 50 428 810 29 560 405 7 348 -3...
output:
50 100 -306 -897 -516 -886 334 -893 124 -882 961 -919 751 -908 -371 -812 -581 -801 -885 -775 -1095 -764 -668 -725 -878 -714 -462 -719 -672 -708 -870 -697 -1080 -686 -888 -667 -1098 -656 202 -702 -8 -691 -548 -652 -758 -641 -784 -537 -994 -526 662 -567 452 -556 736 -551 526 -540 -579 -437 -789 -426 3...
result:
wrong answer Polyline 17 intersects with previous polylines.