Submission #47027371
Source Code Expand
/*
Author : Hocky Yudhiono
Sab 28 Okt 2023 07:04:41
*/
#include "bits/stdc++.h"
using namespace std;
typedef long long LL;
typedef vector<int> vi;
typedef vector<LL> vl;
typedef vector<vi> vvi;
typedef vector<vl> vvl;
typedef pair<int, int> PII;
typedef pair<int, int> pii;
typedef pair<LL, LL> PLL;
typedef pair<LL, LL> pll;
typedef long double ld;
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define trav(a, x) for(auto& a : x)
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
#define popf pop_front
#define pf push_front
#define popb pop_back
#define pb push_back
#define fi first
#define se second
const double EPS = 1e-9;
const int INFMEM = 63;
// Do dir^1 to get reverse direction
const int dx[8] = {0,0,1,-1,1,-1,1,-1};
const int dy[8] = {1,-1,0,0,1,-1,-1,1};
const char dch[4] = {'R','L','D','U'};
// Do (dir + 2)%4 to get reverse direction
// const int dx[8] = {-1,0,1,0,-1,1,1,-1};
// const int dy[8] = {0,1,0,-1,1,1,-1,-1};
// const char dch[4] = {'U','R','D','L'};
const double PI = 3.141592653589793;
inline void fasterios(){
cin.tie(0)->sync_with_stdio(0);
cin.exceptions(cin.failbit);
}
#define endl '\n'
const int MOD = 1000000007;
// const int MOD = 998244353;
int main(){
fasterios();
int n, m; cin >> n >> m;
vector <LL> isi(n);
trav(cur, isi) cin >> cur;
sort(all(isi));
LL ans = 0;
rep(i,0,n){
LL nxt = upper_bound(all(isi), isi[i] + m - 1) - begin(isi) - 1;
ans = max(ans, nxt - i + 1);
}
cout << ans << endl;
}
Submission Info
Submission Time |
|
Task |
C - Peak |
User |
hocky |
Language |
C++ 20 (gcc 12.2) |
Score |
300 |
Code Size |
1553 Byte |
Status |
AC |
Exec Time |
47 ms |
Memory |
5496 KiB |
Judge Result
Set Name |
Sample |
All |
Score / Max Score |
0 / 0 |
300 / 300 |
Status |
|
|
Set Name |
Test Cases |
Sample |
sample_01.txt, sample_02.txt, sample_03.txt |
All |
sample_01.txt, sample_02.txt, sample_03.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt |
Case Name |
Status |
Exec Time |
Memory |
sample_01.txt |
AC |
1 ms |
3500 KiB |
sample_02.txt |
AC |
1 ms |
3552 KiB |
sample_03.txt |
AC |
1 ms |
3420 KiB |
test_01.txt |
AC |
1 ms |
3396 KiB |
test_02.txt |
AC |
1 ms |
3500 KiB |
test_03.txt |
AC |
1 ms |
3480 KiB |
test_04.txt |
AC |
1 ms |
3504 KiB |
test_05.txt |
AC |
1 ms |
3420 KiB |
test_06.txt |
AC |
24 ms |
5392 KiB |
test_07.txt |
AC |
36 ms |
4928 KiB |
test_08.txt |
AC |
43 ms |
5132 KiB |
test_09.txt |
AC |
47 ms |
5416 KiB |
test_10.txt |
AC |
28 ms |
4444 KiB |
test_11.txt |
AC |
11 ms |
4092 KiB |
test_12.txt |
AC |
47 ms |
5344 KiB |
test_13.txt |
AC |
15 ms |
3836 KiB |
test_14.txt |
AC |
4 ms |
3504 KiB |
test_15.txt |
AC |
6 ms |
3428 KiB |
test_16.txt |
AC |
27 ms |
4268 KiB |
test_17.txt |
AC |
32 ms |
4952 KiB |
test_18.txt |
AC |
18 ms |
4160 KiB |
test_19.txt |
AC |
15 ms |
3836 KiB |
test_20.txt |
AC |
45 ms |
5444 KiB |
test_21.txt |
AC |
44 ms |
5396 KiB |
test_22.txt |
AC |
44 ms |
5372 KiB |
test_23.txt |
AC |
42 ms |
5376 KiB |
test_24.txt |
AC |
43 ms |
5368 KiB |
test_25.txt |
AC |
40 ms |
5392 KiB |
test_26.txt |
AC |
41 ms |
5368 KiB |
test_27.txt |
AC |
42 ms |
5388 KiB |
test_28.txt |
AC |
33 ms |
4852 KiB |
test_29.txt |
AC |
5 ms |
3436 KiB |
test_30.txt |
AC |
40 ms |
5496 KiB |
test_31.txt |
AC |
32 ms |
4796 KiB |
test_32.txt |
AC |
35 ms |
4884 KiB |
test_33.txt |
AC |
40 ms |
5420 KiB |