結果

問題 No.2930 Larger Mex
ユーザー Andrew8128Andrew8128
提出日時 2024-10-12 16:45:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 1,369 bytes
コンパイル時間 2,817 ms
コンパイル使用メモリ 249,808 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-10-12 16:45:54
合計ジャッジ時間 8,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 47 ms
5,248 KB
testcase_09 AC 43 ms
5,248 KB
testcase_10 AC 47 ms
5,248 KB
testcase_11 AC 35 ms
5,248 KB
testcase_12 AC 59 ms
6,144 KB
testcase_13 AC 53 ms
5,248 KB
testcase_14 AC 66 ms
7,552 KB
testcase_15 AC 36 ms
5,248 KB
testcase_16 AC 41 ms
5,248 KB
testcase_17 AC 48 ms
5,248 KB
testcase_18 AC 39 ms
5,248 KB
testcase_19 AC 53 ms
5,504 KB
testcase_20 AC 53 ms
5,248 KB
testcase_21 AC 50 ms
5,248 KB
testcase_22 AC 62 ms
6,144 KB
testcase_23 AC 46 ms
5,248 KB
testcase_24 AC 43 ms
5,248 KB
testcase_25 AC 66 ms
7,552 KB
testcase_26 AC 53 ms
6,016 KB
testcase_27 AC 40 ms
5,248 KB
testcase_28 AC 48 ms
5,888 KB
testcase_29 AC 44 ms
5,376 KB
testcase_30 AC 37 ms
5,248 KB
testcase_31 AC 33 ms
5,248 KB
testcase_32 AC 42 ms
6,016 KB
testcase_33 AC 39 ms
5,248 KB
testcase_34 AC 48 ms
5,248 KB
testcase_35 AC 35 ms
5,248 KB
testcase_36 AC 39 ms
5,248 KB
testcase_37 AC 55 ms
6,016 KB
testcase_38 AC 58 ms
5,888 KB
testcase_39 AC 46 ms
5,248 KB
testcase_40 AC 46 ms
5,248 KB
testcase_41 AC 44 ms
5,248 KB
testcase_42 AC 43 ms
5,248 KB
testcase_43 AC 38 ms
5,248 KB
testcase_44 AC 46 ms
5,248 KB
testcase_45 AC 45 ms
5,376 KB
testcase_46 AC 33 ms
5,248 KB
testcase_47 AC 32 ms
5,248 KB
testcase_48 AC 24 ms
5,248 KB
testcase_49 AC 35 ms
5,248 KB
testcase_50 AC 34 ms
5,248 KB
testcase_51 AC 58 ms
6,272 KB
testcase_52 AC 70 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i, x, y) for (auto i = (x); i < (y); i++)
#define RREP(i, x, y) for (auto i = (y) - 1; (x) <= i; i--)
#define ALL(x) (x).begin(), (x).end()
#pragma GCC optimize("O3")
#include <atcoder/segtree>
using namespace atcoder;
int op(int a, int b){
  return min(a, b);
}
int e(){
  return 1000000;
}
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N, M;
  cin >> N >> M;
  vector<int> A(N);
  REP(i, 0, N){
    cin >> A[i];
  }
  if(M == 0){
    REP(i, 0, N){
      cout << N - i << "\n";
    }
    return 0;
  }
  vector<int> ans(N);
  segtree<int, op, e> st(M);
  REP(i, 0, M){
    st.set(i, 0);
  }
  int j = 0;
  REP(i, 0, N){
    while(st.prod(0, M) == 0 && j < N){
      if(A[j] < M){
        st.set(A[j], st.get(A[j])+1);
      }
      j++;
    }
    if(st.prod(0, M) != 0){
      ans[j-i-1]++;
      if(i){
        ans[N-i]--;
      }
    }
    if(A[i] < M){
      st.set(A[i], st.get(A[i])-1);
    }
    // REP(j, 0, M){
    //   cout << st.get(j) << " ";
    // }
    // cout << "   " << st.prod(0, M) << "\n";
  }
  // REP(i, 0, N){
  //   cout << ans[i] << " ";
  // }
  // cout << "\n";
  ll sum = 0;
  REP(i, 0, N){
    sum += ans[i];
    cout << sum << "\n";
  }
  return 0;
}
/*
  File : ~/yukicoder/midoriika_3rd/L.cpp
  Date : 2024/10/12
  Time : 16:21:06
*/
0