結果

問題 No.2930 Larger Mex
ユーザー Nzt3Nzt3
提出日時 2024-10-19 21:08:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 204,900 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-19 21:08:32
合計ジャッジ時間 7,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 27 ms
6,820 KB
testcase_09 AC 25 ms
6,820 KB
testcase_10 AC 28 ms
6,820 KB
testcase_11 AC 23 ms
6,820 KB
testcase_12 AC 32 ms
6,816 KB
testcase_13 AC 30 ms
6,816 KB
testcase_14 AC 31 ms
6,820 KB
testcase_15 AC 25 ms
6,820 KB
testcase_16 AC 24 ms
6,820 KB
testcase_17 AC 31 ms
6,816 KB
testcase_18 AC 24 ms
6,816 KB
testcase_19 AC 32 ms
6,820 KB
testcase_20 AC 32 ms
6,820 KB
testcase_21 AC 30 ms
6,816 KB
testcase_22 AC 30 ms
6,816 KB
testcase_23 AC 27 ms
6,820 KB
testcase_24 AC 27 ms
6,816 KB
testcase_25 AC 32 ms
6,820 KB
testcase_26 AC 24 ms
6,816 KB
testcase_27 AC 20 ms
6,820 KB
testcase_28 AC 23 ms
6,816 KB
testcase_29 AC 22 ms
6,820 KB
testcase_30 AC 27 ms
6,820 KB
testcase_31 AC 23 ms
6,816 KB
testcase_32 AC 29 ms
6,820 KB
testcase_33 AC 29 ms
6,820 KB
testcase_34 AC 32 ms
6,816 KB
testcase_35 AC 20 ms
6,820 KB
testcase_36 AC 30 ms
6,820 KB
testcase_37 AC 28 ms
6,816 KB
testcase_38 AC 30 ms
6,816 KB
testcase_39 AC 29 ms
6,816 KB
testcase_40 AC 31 ms
6,820 KB
testcase_41 AC 27 ms
6,820 KB
testcase_42 AC 25 ms
6,816 KB
testcase_43 AC 23 ms
6,816 KB
testcase_44 AC 23 ms
6,816 KB
testcase_45 AC 23 ms
6,816 KB
testcase_46 AC 31 ms
6,820 KB
testcase_47 AC 30 ms
6,820 KB
testcase_48 AC 23 ms
6,816 KB
testcase_49 AC 31 ms
6,816 KB
testcase_50 AC 29 ms
6,820 KB
testcase_51 AC 35 ms
6,816 KB
testcase_52 AC 33 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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(A[l]<M){
      if(cnt[A[l]]==1)mcnt--;
      cnt[A[l]]--;
    }
  }
  rep(i,N)ans[i+1]+=ans[i];
  rep(i,N)cout<<ans[i]<<'\n';
}
0