結果

問題 No.2930 Larger Mex
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-23 10:23:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 1,740 bytes
コンパイル時間 4,155 ms
コンパイル使用メモリ 257,948 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-10-23 10:23:41
合計ジャッジ時間 26,719 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
13,440 KB
testcase_01 AC 57 ms
13,312 KB
testcase_02 AC 63 ms
13,312 KB
testcase_03 AC 60 ms
13,568 KB
testcase_04 AC 60 ms
13,440 KB
testcase_05 AC 58 ms
13,568 KB
testcase_06 AC 57 ms
13,440 KB
testcase_07 AC 59 ms
13,440 KB
testcase_08 AC 343 ms
14,848 KB
testcase_09 AC 333 ms
14,720 KB
testcase_10 AC 372 ms
14,976 KB
testcase_11 AC 297 ms
14,720 KB
testcase_12 AC 407 ms
14,976 KB
testcase_13 AC 403 ms
14,976 KB
testcase_14 AC 437 ms
14,976 KB
testcase_15 AC 312 ms
14,848 KB
testcase_16 AC 351 ms
14,848 KB
testcase_17 AC 360 ms
15,104 KB
testcase_18 AC 308 ms
14,720 KB
testcase_19 AC 418 ms
15,104 KB
testcase_20 AC 378 ms
14,976 KB
testcase_21 AC 374 ms
14,976 KB
testcase_22 AC 473 ms
14,976 KB
testcase_23 AC 343 ms
14,720 KB
testcase_24 AC 349 ms
15,104 KB
testcase_25 AC 522 ms
15,104 KB
testcase_26 AC 329 ms
14,848 KB
testcase_27 AC 283 ms
14,592 KB
testcase_28 AC 319 ms
14,848 KB
testcase_29 AC 337 ms
14,848 KB
testcase_30 AC 321 ms
14,848 KB
testcase_31 AC 280 ms
14,592 KB
testcase_32 AC 353 ms
14,720 KB
testcase_33 AC 344 ms
14,848 KB
testcase_34 AC 415 ms
15,104 KB
testcase_35 AC 300 ms
14,336 KB
testcase_36 AC 419 ms
14,848 KB
testcase_37 AC 373 ms
14,848 KB
testcase_38 AC 408 ms
14,976 KB
testcase_39 AC 399 ms
14,848 KB
testcase_40 AC 398 ms
14,848 KB
testcase_41 AC 373 ms
14,720 KB
testcase_42 AC 320 ms
14,848 KB
testcase_43 AC 311 ms
14,848 KB
testcase_44 AC 327 ms
14,848 KB
testcase_45 AC 338 ms
14,848 KB
testcase_46 AC 490 ms
14,976 KB
testcase_47 AC 506 ms
14,848 KB
testcase_48 AC 371 ms
14,464 KB
testcase_49 AC 493 ms
14,976 KB
testcase_50 AC 387 ms
14,976 KB
testcase_51 AC 557 ms
14,976 KB
testcase_52 AC 572 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define For(i, a, b) for(long long i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(long long i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;

int INF = 2000000000;
lint LINF = 1000000000000000000;

struct S {
    set<int> s;
    vector<int> cnt;
    
    S() {
        rep(i, 200010) {
            s.insert(i);
        }
        cnt.resize(200010, 0);
    }
    
    void insert(int x) {
        cnt[x]++;
        if (cnt[x] == 1) {
            s.erase(x);
        }
    }
    
    void erase(int x) {
        cnt[x]--;
        if (cnt[x] == 0) {
            s.insert(x);
        }
    }
    
    int mex() {
        return *s.begin();
    }
};

int main() {
    int n, m;
    cin >> n >> m;
    vector<int> a(n);
    rep(i, n) {
        cin >> a[i];
    }
    vector<int> ans(n + 2);
    S s;
    int r = 1;
    vector<bool> in(n, false);
    for (int l = 0; l < n; l++) {
        if (!in[l]) {
            s.insert(a[l]);
            in[l] = true;
        }
        if (l > 0 && in[l - 1]) {
            s.erase(a[l - 1]);
            in[l - 1] = false;
        }
        if (l == r) {
            r++;
        }
        while (r < n && s.mex() < m) {
            if (!in[r]) {
                s.insert(a[r]);
                in[r] = true;
            }
            r++;
        }
        if (s.mex() >= m) {
            int mn = r - l, mx = n - l;
            ans[mn]++;
            ans[mx + 1]--;
        }
    }
    for (int i = 1; i <= n + 1; i++) {
        ans[i] += ans[i - 1];
    }
    for (int i = 1; i <= n; i++) {
        cout << ans[i] << endl;
    }
}
0