Submission #1370361


Source Code Expand

/*
ID: 5ak0
PROG:
LANG: C++11
*/

#include <bits/stdc++.h>
#define fr first
#define sc second
#define pb push_back
#define mpr make_pair

using namespace std;

typedef long long ll;
typedef pair<int, int> pii;
const int INF = 1e9 + 7, MAXN = 1e5 + 10;

int n, c, k, a[MAXN], ans, j;

int main(){
    #ifndef SAKO
    //freopen(".in", "r", stdin);
    //freopen(".out", "w", stdout);
    #endif // SAKO
    ios_base::sync_with_stdio(0);
    cin >> n >> c >> k;
    for (int i = 1; i <= n; ++i)
        cin >> a[i];
    sort(a + 1, a + n + 1);
    for (int i = 1; i <= n; ++i){
        j = i;
        while (j < n && a[j + 1] <= a[i] + k && j - i < c - 1)
          ++j;
        i = j;
        ++ans;
    }
    cout << ans;
    return 0;
}

Submission Info

Submission Time
Task A - Airport Bus
User Sakzhan
Language C++14 (GCC 5.4.1)
Score 300
Code Size 778 Byte
Status AC
Exec Time 18 ms
Memory 640 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 2
AC × 12
Set Name Test Cases
Sample sample1.txt, sample2.txt
All sample1.txt, sample2.txt, in1.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, sample1.txt, sample2.txt
Case Name Status Exec Time Memory
in1.txt AC 1 ms 256 KB
in2.txt AC 18 ms 640 KB
in3.txt AC 18 ms 640 KB
in4.txt AC 17 ms 640 KB
in5.txt AC 1 ms 256 KB
in6.txt AC 18 ms 640 KB
in7.txt AC 16 ms 640 KB
in8.txt AC 18 ms 640 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 1 ms 256 KB