結果
問題 | No.2930 Larger Mex |
ユーザー | Nzt3 |
提出日時 | 2024-10-19 21:06:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 790 bytes |
コンパイル時間 | 2,166 ms |
コンパイル使用メモリ | 203,360 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-19 21:06:32 |
合計ジャッジ時間 | 9,185 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,824 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 3 ms
6,816 KB |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 29 ms
6,820 KB |
testcase_09 | AC | 27 ms
6,816 KB |
testcase_10 | AC | 29 ms
6,820 KB |
testcase_11 | AC | 24 ms
6,820 KB |
testcase_12 | AC | 32 ms
6,820 KB |
testcase_13 | AC | 31 ms
6,824 KB |
testcase_14 | AC | 33 ms
6,820 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | AC | 26 ms
6,820 KB |
testcase_27 | AC | 20 ms
6,816 KB |
testcase_28 | AC | 23 ms
6,820 KB |
testcase_29 | AC | 22 ms
6,820 KB |
testcase_30 | RE | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 20 ms
6,820 KB |
testcase_36 | RE | - |
testcase_37 | AC | 29 ms
6,820 KB |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | AC | 24 ms
6,820 KB |
testcase_43 | AC | 24 ms
6,820 KB |
testcase_44 | AC | 23 ms
6,824 KB |
testcase_45 | AC | 24 ms
6,816 KB |
testcase_46 | AC | 31 ms
6,820 KB |
testcase_47 | AC | 31 ms
6,820 KB |
testcase_48 | AC | 22 ms
6,816 KB |
testcase_49 | AC | 31 ms
6,816 KB |
testcase_50 | AC | 30 ms
6,820 KB |
testcase_51 | RE | - |
testcase_52 | AC | 33 ms
6,824 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; constexpr int MOD=998244353; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define rep2(i,l,r) for(int i=(l);i<(int)(r);i++) #define all(v) v.begin(),v.end() int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,M; cin>>N>>M; vector A(N,0); for(int &i:A)cin>>i; if(M==0){ rep(i,N)cout<<N-i<<'\n'; return 0; } vector ans(N+1,0ll); vector cnt(M,0); int mcnt=0; for(int l=0,r=0;l<N;l++){ for(;r<N;r++){ if(mcnt==M)break; if(A[r]<M){ if(cnt[A[r]]==0)mcnt++; cnt[A[r]]++; } } if(mcnt==M){ ans[r-l-1]++; ans[N-l]--; } if(cnt[A[l]]==1)mcnt--; cnt[A[l]]--; } rep(i,N)ans[i+1]+=ans[i]; rep(i,N)cout<<ans[i]<<'\n'; }