| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 1130240 | sohamsen15 | Dancing Elephants (IOI11_elephants) | C++20 | 0 ms | 0 KiB | 
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 999999;
vector<int> a;
int n, l;
void init(int N, int L, vector<int> X) {
    n = N; l = L;
    for (auto x: X) a.push_back(x);
}
int update(int idx, int y) {
    a[idx] = y;
    vector<int> b; for (auto &x: a) b.push_back(x);
    sort(b.begin(), b.end());
    int ans = 0;
    for (int i = 0; i < n;) {
        ans++;
        bool done = false;
        for (int j = i + 1; j < n; j++) {
            if (b[j] - b[i] > l) {
                done = true;
                i = j; break;
            } else if (j == n - 1) {
                i = n;
                done = true;
            }
        }
        if (!done) i++;
    }
    return ans;
}
