-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmhg2.cpp
113 lines (112 loc) · 1.78 KB
/
mhg2.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
107
108
109
110
111
112
113
//#include <iostream>
//#include <algorithm>
//using namespace std;
//int a[20000];
//int main() {
// std::ios::sync_with_stdio(false);
// int t,n, m,j;
// cin >> t;
// while (t--) {
// int res = 0;
// cin >> n >> m;
// for (int i = 0; i < n; i++)
// {
// cin >> a[i];
// }
// if (m % 2 != 0) // 홀수일때
// {
// for (int i = m/2,j=0 ; m+j < n; j++,i++)
// {
// sort(a+j, a + m-1+j);
// if (a[m + j] >= 2 * a[i])
// res++;
// }
// }
// else // 짝수일때
// {
// for (int i =m / 2,j = 0; m + j < n; j++, i++)
// {
// sort(a+j, a + m - 1 + j);
// if (a[m + j] >= 2 * ((a[i]+a[i-1]))/2)
// res++;
// }
// }
//
// cout << res << endl;;
// }
//
//}
//#include <iostream>
//#include <algorithm>
//using namespace std;
//
//int main() {
// std::ios::sync_with_stdio(false);
// int t, i, n, m, j;
// cin >> t;
// while (t--) {
// int a[20000] = { 0 };
// int b[20000] = { 0 };
// int res = 0, cnt = 0;
// int mid=0,mid1=0;
// cin >> n >> m;
// for (i = 0; i < n; i++)
// {
// cin >> a[i];
// b[a[i]]++;
//
// }
// if (m % 2 != 0) // 홀수일때
// {
// for ( i=0,j = 0; m+i<n; j++)
// {
// if (b[j] != 0)
// {
// cnt++;
// if (cnt == m / 2+i+1)
// {
// mid = j;
// if (a[m + i] >= 2 * mid)
// {
// res++;
//
// }
// i++;
//
// }
//
// }
//
// }
// }
// else // 짝수일때
// {
// for (i = 0, j = 0; m + i < n; j++)
// {
// if (b[j] != 0)
// {
// cnt++;
// if (cnt == m / 2 + i)
// {
// mid = j;
// }
// else if (cnt == m / 2 + i + 1)
// {
// mid1 = j;
// if (a[m + i] >= mid1 + mid)
// {
// res++;
//
// }
// }
// i++;
//
// }
//
// }
// }
//
// cout << res << endl;;
// }
//
//} //카운팅 소트!