티스토리 뷰
투 포인터를 이용하면 쉽게 풀 수 있다
간격을 보면서 끝까지 답을 갱신해 가면 나온다!
소스코드
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
|
#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
int n, k;
int arr[1010];
int main() {
//freopen("input.txt", "r", stdin);
int tcase; scanf(" %d", &tcase); int c = 1;
while (tcase--) {
memset(arr, 0, sizeof(arr));
scanf(" %d %d", &n, &k);
for (int i = 0; i < n; i++) scanf(" %d", &arr[i]);
sort(arr, arr + n);
int l = 0, r = 0, ans = 0;
while (r<n &&l <= r) {
if (arr[r] - arr[l] > k) l++;
else ans = max(r++ - l + 1, ans);
}
printf("#%d %d\n", c++, ans);
}
}
|
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[SWEA] 9092 마라톤 (0) | 2020.01.14 |
---|---|
[SWEA] 8993 하지 추측 (0) | 2020.01.14 |
[SWEA] 8998 세운이는 내일 할거야 (0) | 2020.01.14 |
[SWEA] 1824 혁진이의 프로그램 검증 (0) | 2020.01.12 |
[SWEA] 9232 한길이의 생일 선물 (0) | 2020.01.12 |
댓글