結果

問題 No.2930 Larger Mex
ユーザー t98slidert98slider
提出日時 2024-10-12 15:47:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,012 bytes
コンパイル時間 4,489 ms
コンパイル使用メモリ 265,472 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-10-12 15:47:49
合計ジャッジ時間 10,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 44 ms
7,424 KB
testcase_09 AC 41 ms
7,168 KB
testcase_10 AC 46 ms
7,424 KB
testcase_11 AC 38 ms
7,040 KB
testcase_12 AC 48 ms
7,552 KB
testcase_13 AC 47 ms
7,808 KB
testcase_14 AC 49 ms
7,680 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 62 ms
7,552 KB
testcase_18 RE -
testcase_19 AC 51 ms
7,680 KB
testcase_20 AC 52 ms
7,552 KB
testcase_21 AC 56 ms
7,680 KB
testcase_22 AC 47 ms
7,424 KB
testcase_23 AC 44 ms
7,168 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 43 ms
7,424 KB
testcase_27 AC 35 ms
7,040 KB
testcase_28 AC 39 ms
7,296 KB
testcase_29 AC 41 ms
7,424 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 51 ms
7,552 KB
testcase_35 AC 30 ms
6,820 KB
testcase_36 AC 52 ms
7,424 KB
testcase_37 AC 44 ms
7,296 KB
testcase_38 AC 59 ms
7,424 KB
testcase_39 AC 54 ms
7,552 KB
testcase_40 AC 61 ms
7,424 KB
testcase_41 AC 45 ms
7,296 KB
testcase_42 AC 39 ms
7,296 KB
testcase_43 AC 38 ms
7,296 KB
testcase_44 AC 38 ms
7,424 KB
testcase_45 AC 39 ms
7,296 KB
testcase_46 AC 13 ms
6,820 KB
testcase_47 AC 13 ms
6,820 KB
testcase_48 AC 10 ms
6,816 KB
testcase_49 AC 14 ms
6,816 KB
testcase_50 AC 61 ms
7,552 KB
testcase_51 AC 51 ms
7,680 KB
testcase_52 AC 51 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;

int op(int lhs, int rhs){return min(lhs, rhs);}
constexpr int e(){return 1 << 30;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, ans = 0;
    cin >> n >> m;
    if(m == 0){
        for(int i = 0; i < n; i++){
            cout << n - i << '\n';
        }
        return 0;
    }
    vector<int> a(n), imos(n + 1);
    for(auto &&v : a) cin >> v;
    atcoder::segtree<int, op, e> seg(vector<int>(n + 1, 0));
    for(int l = 0, r = 0; l < n; l++){
        int mexv = seg.max_right(0, [&](int v){return v != 0;});
        while(r < n && mexv < m){
            seg.set(a[r], seg.get(a[r]) + 1);
            mexv = seg.max_right(0, [&](int v){return v != 0;});
            r++;
        }
        if(mexv < m) break;
        imos[r - l - 1]++;
        imos[n - l]--;
        seg.set(a[l], seg.get(a[l]) - 1);
    }
    for(int i = 0; i < n; i++){
        imos[i + 1] += imos[i];
        cout << imos[i] << '\n';
    }
}
0