結果

問題 No.2930 Larger Mex
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-12 15:35:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 908 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 212,848 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-10-12 15:36:04
合計ジャッジ時間 9,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
13,440 KB
testcase_01 AC 52 ms
13,440 KB
testcase_02 AC 54 ms
13,312 KB
testcase_03 AC 55 ms
13,312 KB
testcase_04 AC 55 ms
13,440 KB
testcase_05 AC 68 ms
13,440 KB
testcase_06 AC 53 ms
13,440 KB
testcase_07 AC 55 ms
13,440 KB
testcase_08 AC 84 ms
15,616 KB
testcase_09 AC 83 ms
15,488 KB
testcase_10 AC 85 ms
15,744 KB
testcase_11 AC 77 ms
15,360 KB
testcase_12 AC 101 ms
15,744 KB
testcase_13 AC 89 ms
15,744 KB
testcase_14 AC 114 ms
15,744 KB
testcase_15 AC 82 ms
15,488 KB
testcase_16 AC 86 ms
15,360 KB
testcase_17 AC 88 ms
15,616 KB
testcase_18 AC 82 ms
15,360 KB
testcase_19 AC 94 ms
15,744 KB
testcase_20 AC 90 ms
15,744 KB
testcase_21 AC 88 ms
15,744 KB
testcase_22 AC 122 ms
15,744 KB
testcase_23 AC 89 ms
15,488 KB
testcase_24 AC 83 ms
15,488 KB
testcase_25 AC 170 ms
15,616 KB
testcase_26 AC 76 ms
15,488 KB
testcase_27 AC 71 ms
15,232 KB
testcase_28 AC 74 ms
15,488 KB
testcase_29 AC 75 ms
15,360 KB
testcase_30 AC 77 ms
15,360 KB
testcase_31 AC 74 ms
15,104 KB
testcase_32 AC 79 ms
15,488 KB
testcase_33 AC 82 ms
15,488 KB
testcase_34 AC 110 ms
15,744 KB
testcase_35 AC 84 ms
14,848 KB
testcase_36 AC 135 ms
15,488 KB
testcase_37 AC 101 ms
15,616 KB
testcase_38 AC 87 ms
15,488 KB
testcase_39 AC 99 ms
15,616 KB
testcase_40 AC 112 ms
15,616 KB
testcase_41 AC 88 ms
15,360 KB
testcase_42 AC 75 ms
15,616 KB
testcase_43 AC 77 ms
15,488 KB
testcase_44 AC 80 ms
15,488 KB
testcase_45 AC 81 ms
15,488 KB
testcase_46 AC 87 ms
15,616 KB
testcase_47 AC 87 ms
15,616 KB
testcase_48 AC 79 ms
14,976 KB
testcase_49 AC 89 ms
15,744 KB
testcase_50 AC 96 ms
15,616 KB
testcase_51 AC 165 ms
15,744 KB
testcase_52 AC 167 ms
15,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N,M; cin >> N >> M;
    vector<int> A(N);
    for(auto &a : A) cin >> a;

    vector<int> ap(200001);
    int pos = 0;
    set<int> zero;
    vector<long long> answer(N+2);
    for(int i=0; i<=200000; i++) zero.insert(i); 
    for(int i=0; i<N; i++){
        while(pos < N && *zero.begin() < M){
            int a = A.at(pos++);
            ap.at(a)++;
            if(ap.at(a) == 1) zero.erase(a);
        }
        if(*zero.begin() < M) break;
        pos = max(pos,i+1);
        answer.at(pos-i)++;
        answer.at(N-i+1)--; 
        if(M){
            int a = A.at(i);
            ap.at(a)--;
            if(ap.at(a) == 0) zero.insert(a);
        }
    }
    for(int i=2; i<=N; i++) answer.at(i) += answer.at(i-1);
    for(int i=1; i<=N; i++) cout << answer.at(i) << "\n";
}
0