結果

問題 No.2930 Larger Mex
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-15 01:56:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 790 ms / 2,000 ms
コード長 1,277 bytes
コンパイル時間 2,581 ms
コンパイル使用メモリ 215,376 KB
実行使用メモリ 29,312 KB
最終ジャッジ日時 2024-10-15 01:56:56
合計ジャッジ時間 22,930 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 5 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 354 ms
6,784 KB
testcase_09 AC 308 ms
7,040 KB
testcase_10 AC 335 ms
6,784 KB
testcase_11 AC 262 ms
6,016 KB
testcase_12 AC 468 ms
15,616 KB
testcase_13 AC 402 ms
9,472 KB
testcase_14 AC 611 ms
21,120 KB
testcase_15 AC 269 ms
5,888 KB
testcase_16 AC 286 ms
6,528 KB
testcase_17 AC 328 ms
6,784 KB
testcase_18 AC 257 ms
5,888 KB
testcase_19 AC 419 ms
10,112 KB
testcase_20 AC 377 ms
8,704 KB
testcase_21 AC 348 ms
7,808 KB
testcase_22 AC 596 ms
18,944 KB
testcase_23 AC 354 ms
8,832 KB
testcase_24 AC 309 ms
6,272 KB
testcase_25 AC 721 ms
26,240 KB
testcase_26 AC 266 ms
11,136 KB
testcase_27 AC 214 ms
7,680 KB
testcase_28 AC 244 ms
9,088 KB
testcase_29 AC 228 ms
8,576 KB
testcase_30 AC 217 ms
6,912 KB
testcase_31 AC 190 ms
7,168 KB
testcase_32 AC 260 ms
10,368 KB
testcase_33 AC 234 ms
7,552 KB
testcase_34 AC 320 ms
8,576 KB
testcase_35 AC 289 ms
11,008 KB
testcase_36 AC 261 ms
6,400 KB
testcase_37 AC 415 ms
13,952 KB
testcase_38 AC 337 ms
14,080 KB
testcase_39 AC 290 ms
8,704 KB
testcase_40 AC 278 ms
9,088 KB
testcase_41 AC 296 ms
8,704 KB
testcase_42 AC 241 ms
6,784 KB
testcase_43 AC 232 ms
6,272 KB
testcase_44 AC 244 ms
8,704 KB
testcase_45 AC 247 ms
8,448 KB
testcase_46 AC 238 ms
6,400 KB
testcase_47 AC 249 ms
6,016 KB
testcase_48 AC 186 ms
5,248 KB
testcase_49 AC 254 ms
6,400 KB
testcase_50 AC 261 ms
6,400 KB
testcase_51 AC 443 ms
17,792 KB
testcase_52 AC 790 ms
29,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

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

    /*
       左端を固定したとき、mexは単調増加
       [l,r]でちょうどmexがM以上になるなら
       r-l+1, N-l+1の全ての長さが条件を満たす。
       尺取り法で左端の数字を見つけるまでインクリメント
    */

    ll N, M, r=0;
    cin >> N >> M;
    vector<ll> A(N), S(N+3);
    for (int i=0; i<N; i++) cin >> A[i];
    if (M == 0){
        for (int i=0; i<N; i++){
            cout << N-i << endl;
        }
        return 0;
    }
    map<ll, ll> mp;
    set<ll> st;
    for (int i=0; i<M; i++) st.insert(i);
    for (int l=0; l<N; l++){
        while(r<N && !st.empty()){
            if (A[r] < M){
                mp[A[r]]++;
                if (mp[A[r]] == 1){
                    st.erase(A[r]);
                }
            }
            r++;
        }
        if (st.empty()){
            S[N-l+1] -= 1;
            S[r-l] += 1;
        }
        if (A[l] < M){
            mp[A[l]]--;
            if (mp[A[l]] == 0) st.insert(A[l]);
        }
    }
    for (int i=1; i<=N+2; i++) S[i] += S[i-1];
    for (int i=1; i<=N; i++) cout << S[i] << endl;

    return 0;
}
0