結果

問題 No.2930 Larger Mex
ユーザー karinohitokarinohito
提出日時 2024-10-14 14:22:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 1,007 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 212,068 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-10-14 14:22:30
合計ジャッジ時間 18,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 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 4 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 261 ms
5,760 KB
testcase_09 AC 235 ms
5,632 KB
testcase_10 AC 287 ms
5,632 KB
testcase_11 AC 226 ms
5,376 KB
testcase_12 AC 307 ms
8,320 KB
testcase_13 AC 273 ms
6,656 KB
testcase_14 AC 340 ms
9,472 KB
testcase_15 AC 229 ms
5,376 KB
testcase_16 AC 230 ms
5,504 KB
testcase_17 AC 247 ms
5,632 KB
testcase_18 AC 210 ms
5,376 KB
testcase_19 AC 267 ms
7,168 KB
testcase_20 AC 285 ms
6,400 KB
testcase_21 AC 254 ms
6,144 KB
testcase_22 AC 321 ms
10,752 KB
testcase_23 AC 236 ms
6,528 KB
testcase_24 AC 259 ms
5,504 KB
testcase_25 AC 360 ms
13,568 KB
testcase_26 AC 230 ms
5,376 KB
testcase_27 AC 196 ms
5,248 KB
testcase_28 AC 219 ms
5,376 KB
testcase_29 AC 218 ms
5,376 KB
testcase_30 AC 213 ms
5,248 KB
testcase_31 AC 181 ms
5,248 KB
testcase_32 AC 220 ms
5,376 KB
testcase_33 AC 236 ms
5,504 KB
testcase_34 AC 254 ms
6,400 KB
testcase_35 AC 176 ms
7,040 KB
testcase_36 AC 240 ms
5,504 KB
testcase_37 AC 259 ms
8,320 KB
testcase_38 AC 281 ms
8,960 KB
testcase_39 AC 243 ms
6,528 KB
testcase_40 AC 247 ms
6,656 KB
testcase_41 AC 214 ms
6,528 KB
testcase_42 AC 250 ms
5,376 KB
testcase_43 AC 223 ms
5,248 KB
testcase_44 AC 215 ms
5,504 KB
testcase_45 AC 232 ms
5,504 KB
testcase_46 AC 215 ms
5,248 KB
testcase_47 AC 237 ms
5,248 KB
testcase_48 AC 159 ms
5,248 KB
testcase_49 AC 220 ms
5,248 KB
testcase_50 AC 255 ms
5,632 KB
testcase_51 AC 296 ms
10,240 KB
testcase_52 AC 361 ms
14,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/modint>
using namespace atcoder;
using mint = modint998244353;


void solve() {
    int N,M;
    cin>>N>>M;
    if(M==0){
        while(N--){
            cout<<N+1<<endl;
        }
        return;
    }
    vector<int> A(N),AN(N+2,0);
    for(int i=0;i<N;i++)cin>>A[i];
    vector<int> cnt(2e5+1,0);
    set<int> OK;
    deque<int> D;
    int R=0;
    for(int i=0;i<N;i++){
        while(OK.size()<M&&R<N){
            cnt[A[R]]++;
            if(A[R]<M&&cnt[A[R]]==1){
                OK.insert(A[R]);
            }
            R++;
        }
        if(OK.size()==M){
            AN[R-i]++;
            AN[N-i+1]--;
        }
        cnt[A[i]]--;
        if(A[i]<M&&cnt[A[i]]==0)OK.erase(A[i]);
    }
    for(int i=0;i<N;i++)AN[i+1]+=AN[i];
    for(int i=1;i<=N;i++)cout<<AN[i]<<endl;
}

int main() {

    ios::sync_with_stdio(false);
    cin.tie(nullptr);


    // ll T;
    // cin>>T;
    // while(T--)
    solve();
}
0