結果

問題 No.2930 Larger Mex
ユーザー HIcoderHIcoder
提出日時 2024-12-08 23:50:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,483 bytes
コンパイル時間 1,645 ms
コンパイル使用メモリ 128,512 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-12-08 23:52:27
合計ジャッジ時間 139,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,904 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 96 ms
11,776 KB
testcase_04 AC 155 ms
11,776 KB
testcase_05 AC 165 ms
10,496 KB
testcase_06 AC 106 ms
10,496 KB
testcase_07 AC 230 ms
11,264 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);
    const int MAXA=2*100000;
    
    vector<int> cnt_appear(MAXA+1,0);

    set<int> initial_st;
    initial_st.insert(0);
    for(int k=1;k<=N;k++){
        
        cnt_appear.assign(MAXA+1,0);    
        initial_st.insert(k);
        
        set<int> st=initial_st;

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

        for(int t=k;t<N;t++){
            cnt_appear[A[t-k]]--;
            if(cnt_appear[A[t-k]]==0){
                st.insert(A[t-k]);
            }
            cnt_appear[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