結果

問題 No.2930 Larger Mex
ユーザー HIcoderHIcoder
提出日時 2024-12-08 23:39:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,318 bytes
コンパイル時間 1,484 ms
コンパイル使用メモリ 132,196 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-12-08 23:41:51
合計ジャッジ時間 142,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
11,136 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 162 ms
11,392 KB
testcase_04 AC 337 ms
10,496 KB
testcase_05 AC 403 ms
10,496 KB
testcase_06 AC 210 ms
10,496 KB
testcase_07 AC 557 ms
10,496 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
権限があれば一括ダウンロードができます

ソースコード

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];
    }

    vector<ll> ans(N+1,0);
    for(int k=1;k<=N;k++){
        map<int,int> mp;
        set<int> st;
        for(int t=0;t<=k;t++){
            st.insert(t);
        }
        for(int t=0;t<k;t++){
            mp[A[t]]++;
            if(st.count(A[t])){
                st.erase(A[t]);
            }
        }
        if(*st.begin()>=M){
            ans[k]++;
        }

        for(int t=k;t<N;t++){
            mp[A[t-k]]--;
            if(mp[A[t-k]]==0){
                st.insert(A[t-k]);
            }
            mp[A[t]]++;
            if(st.count(A[t])){
                st.erase(A[t]);
            }
            if(*st.begin()>=M){
                ans[k]++;
            }
        }

    }

    for(int k=1;k<=N;k++){
        cout<<ans[k]<<endl;
    }
}
0