結果

問題 No.2930 Larger Mex
ユーザー HIcoderHIcoder
提出日時 2024-12-12 00:09:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 1,722 bytes
コンパイル時間 1,420 ms
コンパイル使用メモリ 122,324 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-12-12 00:09:52
合計ジャッジ時間 20,448 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 291 ms
6,912 KB
testcase_09 AC 301 ms
6,784 KB
testcase_10 AC 303 ms
7,040 KB
testcase_11 AC 245 ms
6,528 KB
testcase_12 AC 318 ms
7,552 KB
testcase_13 AC 341 ms
7,296 KB
testcase_14 AC 320 ms
7,936 KB
testcase_15 AC 279 ms
6,912 KB
testcase_16 AC 260 ms
6,656 KB
testcase_17 AC 336 ms
7,168 KB
testcase_18 AC 254 ms
6,400 KB
testcase_19 AC 324 ms
7,424 KB
testcase_20 AC 342 ms
7,168 KB
testcase_21 AC 315 ms
7,296 KB
testcase_22 AC 321 ms
7,552 KB
testcase_23 AC 278 ms
6,816 KB
testcase_24 AC 300 ms
7,040 KB
testcase_25 AC 313 ms
7,808 KB
testcase_26 AC 283 ms
7,424 KB
testcase_27 AC 237 ms
6,656 KB
testcase_28 AC 264 ms
7,040 KB
testcase_29 AC 260 ms
6,912 KB
testcase_30 AC 274 ms
6,656 KB
testcase_31 AC 233 ms
6,144 KB
testcase_32 AC 286 ms
7,168 KB
testcase_33 AC 295 ms
6,912 KB
testcase_34 AC 312 ms
7,168 KB
testcase_35 AC 192 ms
5,888 KB
testcase_36 AC 315 ms
6,912 KB
testcase_37 AC 292 ms
7,168 KB
testcase_38 AC 309 ms
7,296 KB
testcase_39 AC 311 ms
7,040 KB
testcase_40 AC 300 ms
7,168 KB
testcase_41 AC 277 ms
6,784 KB
testcase_42 AC 271 ms
6,784 KB
testcase_43 AC 265 ms
6,912 KB
testcase_44 AC 272 ms
7,040 KB
testcase_45 AC 264 ms
7,040 KB
testcase_46 AC 307 ms
5,248 KB
testcase_47 AC 302 ms
5,248 KB
testcase_48 AC 222 ms
5,248 KB
testcase_49 AC 330 ms
5,248 KB
testcase_50 AC 300 ms
7,168 KB
testcase_51 AC 325 ms
7,552 KB
testcase_52 AC 321 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
using ll = long long;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;
const int dy[]={0,1,0,-1};
const int dx[]={1,0,-1,0};

int main(){
    int N,M;
    cin>>N>>M;

    vector<int> A(N);
    for(int i=0;i<N;i++){
        cin>>A[i];
    }

    if(M==0){
        for(int k=1;k<=N;k++){
            cout<<N-k+1<<endl;
        }
        return 0;
    }

    int cnt_lower=0;//{0,1,2,...,M-1}が全て登場したかどうかをcnt_lowerで管理する
    vector<int> cnt_appear(M+1,0);// cnt_appear[i]=数iが登場した回数

    vector<ll> cum_sum(N+5,0);


    int l=0,r=0;
    while(l<N){

        while(r<N && cnt_lower<M){
            if(A[r]<M){
                if(cnt_appear[A[r]]==0){
                    cnt_lower++;//[l,r)にA[r]が初めて登場した
                }
                cnt_appear[A[r]]++;
            }
            r++;
        }
        
        if(cnt_lower==M){
            //[l,r)
            int len=r-l;
            cum_sum[len]++;//len以上は条件を満たす
            cum_sum[N+1-l]--;//[l,N+1)

        }

        if(A[l]<M){
            cnt_appear[A[l]]--;
            if(cnt_appear[A[l]]==0){
                cnt_lower--;
            }
        }
        l++;
    }

    for(int i=1;i<=N;i++){
        cum_sum[i]+=cum_sum[i-1];
    }

    vector<ll> ans(N+1,0);
    for(int i=1;i<=N;i++){
        ans[i]=cum_sum[i];
        cout<<ans[i]<<endl;
    }

    
}
0