結果

問題 No.2930 Larger Mex
ユーザー highlighterhighlighter
提出日時 2024-10-12 15:06:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 1,421 bytes
コンパイル時間 5,078 ms
コンパイル使用メモリ 314,608 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-12 15:07:20
合計ジャッジ時間 22,042 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 ms
6,820 KB
testcase_04 AC 4 ms
6,816 KB
testcase_05 AC 5 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 293 ms
6,820 KB
testcase_09 AC 260 ms
6,816 KB
testcase_10 AC 299 ms
6,820 KB
testcase_11 AC 243 ms
6,816 KB
testcase_12 AC 326 ms
8,576 KB
testcase_13 AC 326 ms
6,820 KB
testcase_14 AC 354 ms
9,984 KB
testcase_15 AC 273 ms
7,424 KB
testcase_16 AC 285 ms
7,552 KB
testcase_17 AC 334 ms
8,064 KB
testcase_18 AC 276 ms
7,168 KB
testcase_19 AC 387 ms
9,984 KB
testcase_20 AC 365 ms
9,216 KB
testcase_21 AC 370 ms
8,832 KB
testcase_22 AC 444 ms
13,184 KB
testcase_23 AC 321 ms
8,960 KB
testcase_24 AC 322 ms
7,936 KB
testcase_25 AC 514 ms
17,280 KB
testcase_26 AC 262 ms
6,816 KB
testcase_27 AC 207 ms
6,820 KB
testcase_28 AC 245 ms
6,820 KB
testcase_29 AC 239 ms
6,816 KB
testcase_30 AC 252 ms
6,820 KB
testcase_31 AC 207 ms
6,816 KB
testcase_32 AC 253 ms
6,816 KB
testcase_33 AC 260 ms
6,816 KB
testcase_34 AC 343 ms
9,216 KB
testcase_35 AC 210 ms
7,168 KB
testcase_36 AC 281 ms
7,936 KB
testcase_37 AC 313 ms
8,576 KB
testcase_38 AC 365 ms
10,752 KB
testcase_39 AC 312 ms
9,216 KB
testcase_40 AC 312 ms
9,344 KB
testcase_41 AC 298 ms
7,680 KB
testcase_42 AC 250 ms
6,816 KB
testcase_43 AC 243 ms
6,820 KB
testcase_44 AC 252 ms
6,816 KB
testcase_45 AC 240 ms
6,816 KB
testcase_46 AC 283 ms
6,816 KB
testcase_47 AC 273 ms
6,820 KB
testcase_48 AC 197 ms
6,816 KB
testcase_49 AC 323 ms
6,820 KB
testcase_50 AC 286 ms
7,936 KB
testcase_51 AC 386 ms
12,672 KB
testcase_52 AC 536 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define int long long

signed main(){
	int N,M;
	cin >> N >> M;
	vector<int> A(N);
	for(int i=0;i<N;i++){
		cin >> A[i];
	}
	if(M==0){
		for(int k=1;k<=N;k++){
			cout << N-k+1 << endl;
		}
		return 0;
	}
	//k>=Mが必要.
	//長さkの連続部分列であって,0,1,2,...,M-1がすべて含まれる に言い換えられる
	//lを移動 -> rの最小値が求まれば良い
	//尺取りのノリ
	map<int,int> data;
	int r=-1;
	for(int R=0;R<N;R++){
		if(A[R]<M){
			data[A[R]]++;
		}
		if((int)(data.size())==M){
			r=R+1;
			break;
		}
	}
	if((int)(data.size())!=M){
		for(int k=1;k<=N;k++){
			cout << 0 << endl;
		}
		return 0;
	}
	//[0,r)はok
	//長さr,r+1,...,Nに+1
	//imos
	//1,2,...,Nに+1
	vector<int> ans(N+1);
	ans[r-1]++;
	ans[N]--;
	for(int l=1;l<N;l++){
		//l-1を削除
		if(A[l-1]<M){
			data[A[l-1]]--;
			if(data[A[l-1]]==0){
				data.erase(A[l-1]);
			}
		}
		if((int)(data.size())==M){
			ans[r-l-1]++;
			ans[N-l]--;
			continue;
		}
		while(r<N){
			if(A[r]<M){
				data[A[r]]++;
			}
			r++;
			if((int)(data.size())==M){
				break;
			}
		}
		if((int)(data.size())==M){
			//[l,r) ~ [l,N)
			//r-l ~ N-lに+1
			ans[r-l-1]++;
			ans[N-l]--;
		}
	}
	vector<int> sum(N+1);
	sum[0]=0;
	for(int i=1;i<=N;i++){
		sum[i]=sum[i-1]+ans[i-1];
	}
	for(int i=1;i<=N;i++){
		cout << sum[i] << endl;
	}
}
0