結果

問題 No.2930 Larger Mex
ユーザー momoyuumomoyuu
提出日時 2024-10-13 18:34:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,143 bytes
コンパイル時間 1,068 ms
コンパイル使用メモリ 97,352 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-10-13 18:35:03
合計ジャッジ時間 16,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 4 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 223 ms
6,656 KB
testcase_09 AC 217 ms
6,400 KB
testcase_10 AC 261 ms
6,784 KB
testcase_11 AC 201 ms
6,144 KB
testcase_12 AC 252 ms
6,784 KB
testcase_13 AC 238 ms
6,784 KB
testcase_14 AC 246 ms
6,656 KB
testcase_15 AC 240 ms
6,528 KB
testcase_16 AC 200 ms
6,400 KB
testcase_17 AC 246 ms
6,656 KB
testcase_18 AC 211 ms
6,272 KB
testcase_19 AC 254 ms
6,656 KB
testcase_20 AC 265 ms
6,784 KB
testcase_21 AC 256 ms
6,656 KB
testcase_22 AC 255 ms
6,528 KB
testcase_23 AC 214 ms
6,400 KB
testcase_24 AC 260 ms
6,656 KB
testcase_25 AC 239 ms
6,656 KB
testcase_26 AC 234 ms
6,656 KB
testcase_27 AC 196 ms
6,272 KB
testcase_28 AC 218 ms
6,528 KB
testcase_29 AC 234 ms
6,400 KB
testcase_30 AC 212 ms
6,400 KB
testcase_31 AC 176 ms
6,016 KB
testcase_32 AC 232 ms
6,528 KB
testcase_33 AC 223 ms
6,528 KB
testcase_34 AC 251 ms
6,656 KB
testcase_35 AC 158 ms
5,888 KB
testcase_36 AC 224 ms
6,656 KB
testcase_37 AC 223 ms
6,400 KB
testcase_38 AC 240 ms
6,656 KB
testcase_39 AC 245 ms
6,656 KB
testcase_40 AC 251 ms
6,656 KB
testcase_41 AC 206 ms
6,400 KB
testcase_42 AC 220 ms
6,528 KB
testcase_43 AC 206 ms
6,656 KB
testcase_44 AC 221 ms
6,528 KB
testcase_45 AC 244 ms
6,400 KB
testcase_46 AC 240 ms
6,656 KB
testcase_47 AC 242 ms
6,656 KB
testcase_48 AC 186 ms
6,016 KB
testcase_49 AC 242 ms
6,656 KB
testcase_50 AC 246 ms
6,784 KB
testcase_51 AC 256 ms
6,784 KB
testcase_52 AC 248 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

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

    ll n,m;
    cin>>n>>m;
    vector<int> a(n);
    for(int i = 0;i<n;i++) cin>>a[i];
    vector<int> cnt(3e5,0);

    int r = 0;
    vector<ll> ans(n+1,0);
    int now = m;

    auto add = [&](int p) {
        if(p>=m) return;
        //cout<<p<<" "<<cnt[p]<<endl;
        if(cnt[p]==0) now--;
        cnt[p]++;
        return;
    };
    auto erase = [&](int p){
        if(p>=m) return;
        if(cnt[p]==1) now++;
        cnt[p]--;
    };
    for(int i = 0;i<n;i++){
        while(r<=i) {
            add(a[r]);
            r++;
        }
        while(r<n){
            if(now==0) break;
            //cout<<i<<" "<<r<<endl;
            add(a[r]);
            r++;
        }
        
        if(now==0) {
            int len = r - i;
            int mx = n - i;
            ans[len]++;
            if(mx+1<=n) ans[mx+1]--;
        }
        erase(a[i]);
    }
    for(int i = 1;i<=n;i++){
        if(i!=n) ans[i+1] += ans[i];
        cout<<ans[i]<<endl;
    }
    
}
0