QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#409520 | #7680. Subway | light_ink_dots | WA | 0ms | 3832kb | C++14 | 985b | 2024-05-12 10:43:53 | 2024-05-12 10:43:54 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int main() {
static const int maxn = 60, B = 1000;
int n, mx = 0;
scanf("%d", &n);
struct point {
int x, y, a;
};
static point p[maxn];
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);
sort(p + 1, p + n + 1, [](const point x, const point y) { return x.y != y.y ? x.y < y.y : x.x < y.x; });
printf("%d\n", mx);
for (int i = 1; i <= n; i++) p[i].a = n == 50 ? mx : p[i].a;
for (int l = 1; l <= mx; l++) {
int dx = (-2 * l) * B, dy = 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);
}
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: 0
Wrong Answer
time: 0ms
memory: 3832kb
input:
3 1 2 1 2 1 2 3 3 2
output:
2 6 2 1 -1998 2 1 2 -1999 3 3 3 -1997 4 5 2 1 -3998 3 -3999 4 3 3 -3997 5
result:
wrong answer Polyline 2 has partially overlapping segments with previous polylines.