Task: | Line Intersections |
Sender: | arnxxau |
Submission time: | 2024-11-10 17:57:27 +0200 |
Language: | C++ (C++20) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | WRONG ANSWER | 0.00 s | details |
#7 | ACCEPTED | 0.00 s | details |
#8 | WRONG ANSWER | 0.00 s | details |
#9 | ACCEPTED | 0.00 s | details |
#10 | WRONG ANSWER | 0.00 s | details |
#11 | WRONG ANSWER | 0.00 s | details |
#12 | WRONG ANSWER | 0.00 s | details |
#13 | WRONG ANSWER | 0.00 s | details |
#14 | ACCEPTED | 0.00 s | details |
#15 | WRONG ANSWER | 0.00 s | details |
#16 | WRONG ANSWER | 0.00 s | details |
#17 | WRONG ANSWER | 0.00 s | details |
#18 | WRONG ANSWER | 0.00 s | details |
#19 | WRONG ANSWER | 0.00 s | details |
#20 | WRONG ANSWER | 0.00 s | details |
#21 | WRONG ANSWER | 0.00 s | details |
#22 | WRONG ANSWER | 0.00 s | details |
#23 | WRONG ANSWER | 0.00 s | details |
#24 | WRONG ANSWER | 0.00 s | details |
#25 | WRONG ANSWER | 0.00 s | details |
#26 | WRONG ANSWER | 0.00 s | details |
#27 | WRONG ANSWER | 0.00 s | details |
#28 | WRONG ANSWER | 0.00 s | details |
#29 | WRONG ANSWER | 0.00 s | details |
#30 | WRONG ANSWER | 0.00 s | details |
#31 | WRONG ANSWER | 0.00 s | details |
#32 | WRONG ANSWER | 0.00 s | details |
#33 | WRONG ANSWER | 0.00 s | details |
#34 | WRONG ANSWER | 0.00 s | details |
#35 | WRONG ANSWER | 0.00 s | details |
#36 | WRONG ANSWER | 0.00 s | details |
#37 | WRONG ANSWER | 0.02 s | details |
#38 | WRONG ANSWER | 0.02 s | details |
#39 | WRONG ANSWER | 0.02 s | details |
#40 | WRONG ANSWER | 0.02 s | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:11:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result] 11 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ input/code.cpp:18:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result] 18 | scanf("%d %d %d %d", &x1, &y1, &x2, &y2); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Code
#include <iostream> #include <vector> #include <algorithm> #include <map> #include <set> #include <cstdio> using namespace std; int main() { int n; scanf("%d", &n); vector<tuple<int, int, int>> horizontal_lines; // (x_start, x_end, y) vector<tuple<int, int, int>> vertical_lines; // (x, y_start, y_end) set<int> y_coords; for (int i = 0; i < n; ++i) { int x1, y1, x2, y2; scanf("%d %d %d %d", &x1, &y1, &x2, &y2); if (y1 == y2) { // Horizontal line int y0 = y1; int x_start = min(x1, x2); int x_end = max(x1, x2); horizontal_lines.push_back(make_tuple(x_start, x_end, y0)); y_coords.insert(y0); } else if (x1 == x2) { // Vertical line int x0 = x1; int y_start = min(y1, y2); int y_end = max(y1, y2); vertical_lines.push_back(make_tuple(x0, y_start, y_end)); y_coords.insert(y_start); y_coords.insert(y_end); } } // Coordinate compression vector<int> y_list(y_coords.begin(), y_coords.end()); sort(y_list.begin(), y_list.end()); map<int, int> y_index; int idx = 1; for (int y : y_list) { y_index[y] = idx++; } int M = y_list.size(); // Events: (x, event_type, y1) for add/remove events // Events: (x, event_type, y1, y2) for query events struct Event { int x; int type; // 0 = add, 1 = query, 2 = remove int y1; int y2; Event(int x_, int type_, int y1_, int y2_ = 0) : x(x_), type(type_), y1(y1_), y2(y2_) {} }; vector<Event> events; // Add events for horizontal lines for (auto &hl : horizontal_lines) { int x_start, x_end, y0; tie(x_start, x_end, y0) = hl; int idx_y = y_index[y0]; events.emplace_back(x_start, 0, idx_y); // Add event events.emplace_back(x_end, 2, idx_y); // Remove event } // Add events for vertical lines for (auto &vl : vertical_lines) { int x0, y_start, y_end; tie(x0, y_start, y_end) = vl; int idx_y_start = y_index[y_start]; int idx_y_end = y_index[y_end]; events.emplace_back(x0, 1, idx_y_start, idx_y_end); // Query event } // Sort events // Event types: 0 = 'add', 1 = 'query', 2 = 'remove' // We sort by x, then by event type ('add' before 'query' before 'remove') sort(events.begin(), events.end(), [](const Event &a, const Event &b) { if (a.x != b.x) return a.x < b.x; return a.type < b.type; }); // Fenwick Tree (Binary Indexed Tree) implementation class FenwickTree { public: FenwickTree(int size) : N(size + 2) { tree.resize(N, 0); } void update(int idx, int value) { while (idx < N) { tree[idx] += value; idx += idx & -idx; } } int query(int idx) { int result = 0; while (idx > 0) { result += tree[idx]; idx -= idx & -idx; } return result; } int range_query(int l, int r) { return query(r) - query(l - 1); } private: int N; vector<int> tree; }; FenwickTree ft(M); long long result = 0; for (auto &event : events) { if (event.type == 0) { // Add event ft.update(event.y1, 1); } else if (event.type == 2) { // Remove event ft.update(event.y1, -1); } else { // Query event int y_start = event.y1; int y_end = event.y2; if (y_start > y_end) swap(y_start, y_end); int count = ft.range_query(y_start, y_end); result += count; } } printf("%lld\n", result); return 0; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1 1 1 -1 1 |
correct output |
---|
0 |
user output |
---|
0 |
Test 2
Verdict: ACCEPTED
input |
---|
1 -1 1 1 1 |
correct output |
---|
0 |
user output |
---|
0 |
Test 3
Verdict: ACCEPTED
input |
---|
2 2 1 -2 1 -1 2 -2 2 |
correct output |
---|
0 |
user output |
---|
0 |
Test 4
Verdict: ACCEPTED
input |
---|
2 -2 2 2 2 -1 0 -2 0 |
correct output |
---|
0 |
user output |
---|
0 |
Test 5
Verdict: ACCEPTED
input |
---|
3 3 2 -3 2 -1 3 -2 3 -3 -1 -2 -1 |
correct output |
---|
0 |
user output |
---|
0 |
Test 6
Verdict: WRONG ANSWER
input |
---|
3 -3 3 2 3 -1 0 -3 0 -1 2 -1 -1 |
correct output |
---|
2 |
user output |
---|
1 |
Test 7
Verdict: ACCEPTED
input |
---|
4 4 2 -4 2 -2 4 -3 4 -4 -1 -3 -1 -1 0 3 0 |
correct output |
---|
0 |
user output |
---|
0 |
Test 8
Verdict: WRONG ANSWER
input |
---|
4 -4 3 3 3 -1 4 4 4 -4 1 -1 1 -1 0 -1 -2 |
correct output |
---|
3 |
user output |
---|
0 |
Test 9
Verdict: ACCEPTED
input |
---|
5 5 2 -5 2 -2 5 -4 5 -4 -1 -3 -1 -2 0 4 0 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 10
Verdict: WRONG ANSWER
input |
---|
5 -5 4 4 4 -1 5 5 5 -5 1 -1 1 -2 0 -2 -2 ... |
correct output |
---|
6 |
user output |
---|
1 |
Test 11
Verdict: WRONG ANSWER
input |
---|
5 5 -2 5 -3 -5 -5 -5 -1 5 1 -4 1 1 -1 1 0 ... |
correct output |
---|
6 |
user output |
---|
0 |
Test 12
Verdict: WRONG ANSWER
input |
---|
6 6 3 -6 3 -3 6 -5 6 -5 -1 -4 -1 -2 2 -1 2 ... |
correct output |
---|
5 |
user output |
---|
2 |
Test 13
Verdict: WRONG ANSWER
input |
---|
6 -6 5 4 5 -2 6 0 6 1 -1 3 -1 0 0 -3 0 ... |
correct output |
---|
8 |
user output |
---|
1 |
Test 14
Verdict: ACCEPTED
input |
---|
7 7 3 6 3 -6 -3 7 -3 -4 -6 -2 -6 -2 -2 3 -2 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 15
Verdict: WRONG ANSWER
input |
---|
7 -7 6 5 6 -2 7 0 7 2 -2 4 -2 0 0 -3 0 ... |
correct output |
---|
10 |
user output |
---|
2 |
Test 16
Verdict: WRONG ANSWER
input |
---|
10 10 5 9 5 -8 -4 10 -4 -6 -9 -2 -9 -2 -3 4 -3 ... |
correct output |
---|
9 |
user output |
---|
0 |
Test 17
Verdict: WRONG ANSWER
input |
---|
10 -7 -10 9 -10 9 -1 9 0 -4 -4 -7 -4 4 3 -8 3 ... |
correct output |
---|
24 |
user output |
---|
3 |
Test 18
Verdict: WRONG ANSWER
input |
---|
10 -9 4 -9 7 -8 0 1 0 -1 8 -1 -10 -10 -6 -5 -6 ... |
correct output |
---|
24 |
user output |
---|
4 |
Test 19
Verdict: WRONG ANSWER
input |
---|
10 8 1 8 -7 7 5 7 2 2 -6 2 -8 -6 -10 -6 4 ... |
correct output |
---|
24 |
user output |
---|
2 |
Test 20
Verdict: WRONG ANSWER
input |
---|
10 -9 8 7 8 -3 9 10 9 -9 2 -2 2 -3 0 -3 -4 ... |
correct output |
---|
24 |
user output |
---|
4 |
Test 21
Verdict: WRONG ANSWER
input |
---|
10 9 -4 9 -6 -9 -10 -9 -3 10 2 -8 2 2 -2 2 1 ... |
correct output |
---|
21 |
user output |
---|
4 |
Test 22
Verdict: WRONG ANSWER
input |
---|
10 -6 6 -4 6 10 5 -1 5 -4 1 -4 -5 -9 -9 -9 -2 ... |
correct output |
---|
24 |
user output |
---|
6 |
Test 23
Verdict: WRONG ANSWER
input |
---|
50 50 22 44 22 -38 -20 50 -20 -27 -41 -10 -41 -11 -16 17 -16 ... |
correct output |
---|
576 |
user output |
---|
38 |
Test 24
Verdict: WRONG ANSWER
input |
---|
50 -32 -48 44 -48 45 -7 45 -2 -18 -17 -35 -17 20 12 -38 12 ... |
correct output |
---|
621 |
user output |
---|
49 |
Test 25
Verdict: WRONG ANSWER
input |
---|
50 -43 21 -43 34 -38 1 7 1 -6 40 -6 -49 -46 -30 -25 -30 ... |
correct output |
---|
616 |
user output |
---|
90 |
Test 26
Verdict: WRONG ANSWER
input |
---|
50 40 5 40 -33 36 22 36 11 10 -29 10 -36 -28 -50 -28 20 ... |
correct output |
---|
624 |
user output |
---|
78 |
Test 27
Verdict: WRONG ANSWER
input |
---|
50 -45 37 33 37 -14 42 48 42 -41 11 -10 11 -15 2 -15 -1 ... |
correct output |
---|
576 |
user output |
---|
65 |
Test 28
Verdict: WRONG ANSWER
input |
---|
100 100 44 87 44 -75 -40 100 -40 -53 -82 -21 -82 -23 -31 34 -31 ... |
correct output |
---|
2464 |
user output |
---|
338 |
Test 29
Verdict: WRONG ANSWER
input |
---|
100 -63 -95 87 -95 90 -13 90 -3 -36 -34 -69 -34 40 24 -76 24 ... |
correct output |
---|
2475 |
user output |
---|
277 |
Test 30
Verdict: WRONG ANSWER
input |
---|
100 -86 42 -86 68 -76 2 14 2 -13 80 -13 -97 -92 -59 -51 -59 ... |
correct output |
---|
2500 |
user output |
---|
255 |
Test 31
Verdict: WRONG ANSWER
input |
---|
100 81 9 81 -66 71 43 71 22 20 -57 20 -72 -55 -99 -55 40 ... |
correct output |
---|
2464 |
user output |
---|
276 |
Test 32
Verdict: WRONG ANSWER
input |
---|
100 -89 75 67 75 -27 84 96 84 -82 22 -21 22 -29 4 -29 -3 ... |
correct output |
---|
2491 |
user output |
---|
263 |
Test 33
Verdict: WRONG ANSWER
input |
---|
200 199 88 173 88 -149 -79 200 -79 -106 -163 -41 -163 -45 -62 68 -62 ... |
correct output |
---|
9984 |
user output |
---|
1167 |
Test 34
Verdict: WRONG ANSWER
input |
---|
200 -126 -190 173 -190 180 -26 180 -6 -72 -68 -139 -68 80 48 -152 48 ... |
correct output |
---|
9919 |
user output |
---|
950 |
Test 35
Verdict: WRONG ANSWER
input |
---|
200 -172 83 -172 136 -152 4 28 4 -25 159 -25 -193 -184 -117 -101 -117 ... |
correct output |
---|
9991 |
user output |
---|
1095 |
Test 36
Verdict: WRONG ANSWER
input |
---|
200 161 19 161 -131 143 86 143 44 39 -114 39 -144 -110 -198 -110 80 ... |
correct output |
---|
9999 |
user output |
---|
1025 |
Test 37
Verdict: WRONG ANSWER
input |
---|
10000 9944 4407 8652 4407 -7438 -3954 9981 -3954 -5278 -8154 -2068 -8154 -2242 -3089 3395 -3089 ... |
correct output |
---|
24992431 |
user output |
---|
2765302 |
Test 38
Verdict: WRONG ANSWER
input |
---|
10000 -6299 -9482 8631 -9482 8955 -1294 8955 -305 -3589 -3393 -6912 -3393 3977 2386 -7601 2386 ... |
correct output |
---|
24999775 |
user output |
---|
2769821 |
Test 39
Verdict: WRONG ANSWER
input |
---|
10000 -8586 4163 -8586 6799 -7574 217 1386 217 -1259 7926 -1259 -9626 -9188 -5855 -5042 -5855 ... |
correct output |
---|
24999856 |
user output |
---|
2802799 |
Test 40
Verdict: WRONG ANSWER
input |
---|
10000 8013 945 8013 -6546 7113 4297 7113 2181 1951 -5678 1951 -7171 -5510 -9876 -5510 3969 ... |
correct output |
---|
24999996 |
user output |
---|
2748552 |