-
Notifications
You must be signed in to change notification settings - Fork 0
/
개똥벌레.cc
97 lines (81 loc) · 2.06 KB
/
개똥벌레.cc
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
#include <iostream>
#include <vector>
using namespace std;
// void ans() {
// int N, H;
// cin >> N >> H;
// vector<int> block(N);
// vector<vector<int> > map(H, vector<int>(N));
// for (int i = 0; i < N; i++){
// cin >> block[i];
// }
// for (int i = 0; i < H; i++) {
// for (int j = 0; j < N; j++) {
// map[i][j] = 0;
// }
// }
// for (int i = 0; i < N; i++) {
// if (i % 2 == 0) {
// for (int j = H - 1; j >= H - block[i]; j--) {
// map[j][i] = 1;
// }
// }
// else if (i % 2 == 1) {
// for (int j = 0; j < block[i]; j++) {
// map[j][i] = 1;
// }
// }
// }
// int cnt = 0;
// int min_val = N;
// for (int i = 0; i < H; i++) {
// int tmp = 0;
// for (int j = 0; j < N; j++) {
// if (map[i][j] == 1) {
// tmp++;
// }
// }
// if (min_val > tmp) {
// min_val = tmp;
// cnt = 1;
// }
// else if (min_val == tmp) {
// cnt++;
// }
// }
// cout << min_val << " " << cnt;
// }
void ans() {
int N, H;
cin >> N >> H;
vector<int> bot(H + 1, 0);
vector<int> top(H + 1, 0);
vector<int> result(H + 1, 0);
for (int i = 0; i < N / 2; i++) {
int bot_pos, top_pos;
cin >> bot_pos >> top_pos;
bot[bot_pos]++;
top[H + 1 - top_pos]++;
}
for (int i = H - 1; i >= 1; i--) {
bot[i] += bot[i + 1];
}
int min_val = 1000000;
int cnt = 0;
for (int i = 1; i <= H; i++) {
top[i] += top[i - 1];
result[i] += bot[i] + top[i];
if (min_val > result[i]) {
cnt = 1;
min_val = result[i];
}
else if (result[i] == min_val) {
cnt++;
}
}
cout << min_val << " " << cnt;
}
int main() {
ans();
return 0;
}