-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy path350C. Bombs.cpp
106 lines (96 loc) · 2.3 KB
/
350C. Bombs.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#include <bits/stdc++.h>
using namespace std;
struct point {
int first, second, d;
bool operator<(const point &p) const {
return d < p.d;
}
};
int const N = 1e5 + 1;
int n, whr, res;
point a[N];
int where(int &x, int &y) {
if(x > 0 && y > 0)
return 1;
if(x < 0 && y > 0)
return 2;
if(x < 0 && y < 0)
return 3;
if(x > 0 && y < 0)
return 4;
if(x == 0)
return 5;
if(y == 0)
return 6;
}
int main() {
scanf("%d", &n);
for(int i = 0; i < n; ++i) {
scanf("%d %d", &a[i].first, &a[i].second);
whr = where(a[i].first, a[i].second);
a[i].d = abs(a[i].first) + abs(a[i].second);
if(whr >= 1 && whr <= 4)
res += 6;
else
res += 4;
}
sort(a, a + n);
printf("%d\n", res);
for(int i = 0; i < n; ++i) {
whr = where(a[i].first, a[i].second);
if(whr == 1) {
printf("1 %d U\n", a[i].second);
printf("1 %d R\n", a[i].first);
puts("2");
printf("1 %d D\n", a[i].second);
printf("1 %d L\n", a[i].first);
puts("3");
} else if(whr == 2) {
printf("1 %d U\n", a[i].second);
printf("1 %d L\n", -a[i].first);
puts("2");
printf("1 %d D\n", a[i].second);
printf("1 %d R\n", -a[i].first);
puts("3");
} else if(whr == 3) {
printf("1 %d D\n", -a[i].second);
printf("1 %d L\n", -a[i].first);
puts("2");
printf("1 %d U\n", -a[i].second);
printf("1 %d R\n", -a[i].first);
puts("3");
} else if(whr == 4) {
printf("1 %d D\n", -a[i].second);
printf("1 %d R\n", a[i].first);
puts("2");
printf("1 %d U\n", -a[i].second);
printf("1 %d L\n", a[i].first);
puts("3");
} else if(whr == 5) {
if(a[i].second > 0) {
printf("1 %d U\n", a[i].second);
puts("2");
printf("1 %d D\n", a[i].second);
puts("3");
} else {
printf("1 %d D\n", -a[i].second);
puts("2");
printf("1 %d U\n", -a[i].second);
puts("3");
}
} else if(whr == 6) {
if(a[i].first > 0) {
printf("1 %d R\n", a[i].first);
puts("2");
printf("1 %d L\n", a[i].first);
puts("3");
} else {
printf("1 %d L\n", -a[i].first);
puts("2");
printf("1 %d R\n", -a[i].first);
puts("3");
}
}
}
return 0;
}