結果

問題 No.2930 Larger Mex
ユーザー MagentorMagentor
提出日時 2024-10-12 16:39:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 620 ms / 2,000 ms
コード長 3,202 bytes
コンパイル時間 4,829 ms
コンパイル使用メモリ 321,920 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-10-12 16:40:22
合計ジャッジ時間 24,029 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 4 ms
6,820 KB
testcase_05 AC 5 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 363 ms
8,320 KB
testcase_09 AC 306 ms
8,064 KB
testcase_10 AC 331 ms
8,448 KB
testcase_11 AC 262 ms
7,424 KB
testcase_12 AC 502 ms
14,976 KB
testcase_13 AC 394 ms
9,984 KB
testcase_14 AC 535 ms
20,224 KB
testcase_15 AC 279 ms
6,820 KB
testcase_16 AC 299 ms
6,912 KB
testcase_17 AC 345 ms
6,912 KB
testcase_18 AC 268 ms
6,816 KB
testcase_19 AC 467 ms
10,112 KB
testcase_20 AC 429 ms
9,088 KB
testcase_21 AC 379 ms
8,192 KB
testcase_22 AC 501 ms
14,720 KB
testcase_23 AC 382 ms
8,832 KB
testcase_24 AC 309 ms
6,816 KB
testcase_25 AC 570 ms
18,816 KB
testcase_26 AC 351 ms
14,720 KB
testcase_27 AC 240 ms
9,728 KB
testcase_28 AC 302 ms
11,776 KB
testcase_29 AC 272 ms
11,008 KB
testcase_30 AC 334 ms
8,704 KB
testcase_31 AC 291 ms
9,088 KB
testcase_32 AC 405 ms
13,440 KB
testcase_33 AC 376 ms
9,600 KB
testcase_34 AC 441 ms
12,672 KB
testcase_35 AC 282 ms
9,728 KB
testcase_36 AC 467 ms
13,056 KB
testcase_37 AC 422 ms
12,544 KB
testcase_38 AC 384 ms
12,416 KB
testcase_39 AC 332 ms
14,464 KB
testcase_40 AC 354 ms
12,928 KB
testcase_41 AC 339 ms
9,984 KB
testcase_42 AC 260 ms
8,576 KB
testcase_43 AC 235 ms
7,936 KB
testcase_44 AC 280 ms
11,264 KB
testcase_45 AC 301 ms
10,880 KB
testcase_46 AC 290 ms
6,816 KB
testcase_47 AC 261 ms
6,820 KB
testcase_48 AC 187 ms
6,820 KB
testcase_49 AC 282 ms
6,816 KB
testcase_50 AC 261 ms
6,820 KB
testcase_51 AC 557 ms
20,608 KB
testcase_52 AC 620 ms
20,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//M未満のとき進み続ける
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
template<typename T> inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); }
template<typename T> inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); }
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
#define rep2(i, m ,n) for (int i = (m); i < (long long)(n); i++)
#define REP(i, n) for (long long i = 1; i < (long long)(n); i++)
typedef long long ll;
#define updiv(N,X) (N + X - 1) / X
#define l(n) n.begin(),n.end()
#define YesNo(Q) Q==1?cout<<"Yes":cout<<"No"
using P = pair<int, int>;
using mint = modint;
const int MOD = 998244353LL;
const ll INF = 999999999999LL;
vector<long long> fact, fact_inv, inv;
/*  init_nCk :二項係数のための前処理
    計算量:O(n)
*/
template <typename T>
void input(vector<T> &v){
 rep(i,v.size()){cin>>v[i];}
  return;
}
void init_nCk(int SIZE) {
    fact.resize(SIZE + 5);
    fact_inv.resize(SIZE + 5);
    inv.resize(SIZE + 5);
    fact[0] = fact[1] = 1;
    fact_inv[0] = fact_inv[1] = 1;
    inv[1] = 1;
    for (int i = 2; i < SIZE + 5; i++) {
        fact[i] = fact[i - 1] * i % MOD;
        inv[i] = MOD - inv[MOD % i] * (MOD / i) % MOD;
        fact_inv[i] = fact_inv[i - 1] * inv[i] % MOD;
    }
}
/*  nCk :MODでの二項係数を求める(前処理 int_nCk が必要)
    計算量:O(1)
*/
long long nCk(int n, int k) {
    assert(!(n < k));
    assert(!(n < 0 || k < 0));
    return fact[n] * (fact_inv[k] * fact_inv[n - k] % MOD) % MOD;
}

long long modpow(long long a, long long n, long long mod) {
    long long res = 1;
    while (n > 0) {
        if (n & 1) res = res * a % mod;
        a = a * a % mod;
        n >>= 1;
    }
    return res;
}

ll POW(ll a,ll n){
  long long res = 1;
    while (n > 0) {
        if (n & 1) res = res * a;
        a = a * a;
        n >>= 1;
    }
    return res;
}
pair<vector<pair<long long, long long> >,bool> pf(long long N) {
    vector<pair<long long, long long> > res;
    for (long long a = 2; a * a <= min(N,300000LL*300000LL); ++a) {
        if (N % a != 0) continue;
        long long ex = 0; // 指数

        // 割れる限り割り続ける
        while (N % a == 0) {
            ++ex;
            N /= a;
        }

        // その結果を push
        res.push_back({a, ex});
    }
     
    // 最後に残った数について
    if (N != 1) res.push_back({N, 1});
    bool dff = (bool)(N==1);
    return pair(res,dff);
}
int main() {
int n,m;cin>>n>>m;
vector<ll> v(n+1,-1);
rep(i,n){cin>>v[i];}
map<ll,ll> mp;
rep(i,m+10){mp[i]=0;}
ll cnt = m;//条件に反するやつーの数ー
vector<ll> cum(n+2,0);
deque<ll> dq;
//front <-> back
ll idx = 0;
rep(i,n){
while(true){
if(0==cnt||(!dq.empty()&&dq.back()==-1)){break;}
dq.push_back(v[idx]);	

mp[v[idx]]++;
if(1==mp[v[idx]]&&m>v[idx]){cnt--;}
idx++;
}
//cout << dq.size() << " ";
cum[dq.size()]++;
if(!dq.empty()){
	//cout << dq.front()<<" ";
	mp[dq.front()]--;
	if(0==mp[dq.front()]&&m>dq.front()){cnt++;}
	dq.pop_front();}//cout<<endl;
}

for(int i = n;0<=i;i--){
	cum[i] += cum[i+1];
}

rep(i,n){
	cout << n-i-cum[i+2] << endl; 
}
}
0