結果

問題 No.2930 Larger Mex
ユーザー highlighterhighlighter
提出日時 2024-10-12 14:58:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,640 bytes
コンパイル時間 5,661 ms
コンパイル使用メモリ 315,612 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-10-12 14:58:55
合計ジャッジ時間 25,198 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 3 ms
5,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 5 ms
5,248 KB
testcase_05 WA -
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 6 ms
5,248 KB
testcase_08 AC 318 ms
5,248 KB
testcase_09 AC 356 ms
5,248 KB
testcase_10 AC 357 ms
5,248 KB
testcase_11 AC 265 ms
5,248 KB
testcase_12 AC 412 ms
8,576 KB
testcase_13 AC 374 ms
6,272 KB
testcase_14 AC 383 ms
9,984 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 305 ms
5,248 KB
testcase_27 AC 231 ms
5,248 KB
testcase_28 AC 295 ms
5,248 KB
testcase_29 AC 262 ms
5,248 KB
testcase_30 AC 300 ms
5,248 KB
testcase_31 AC 231 ms
5,248 KB
testcase_32 AC 314 ms
5,248 KB
testcase_33 AC 292 ms
5,248 KB
testcase_34 WA -
testcase_35 AC 231 ms
7,040 KB
testcase_36 WA -
testcase_37 AC 373 ms
8,448 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 298 ms
5,248 KB
testcase_43 AC 262 ms
5,248 KB
testcase_44 AC 294 ms
5,248 KB
testcase_45 AC 268 ms
5,248 KB
testcase_46 AC 314 ms
5,248 KB
testcase_47 AC 329 ms
5,248 KB
testcase_48 AC 219 ms
5,248 KB
testcase_49 AC 345 ms
5,248 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

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]--;
			if(l==r){
				r++;
				data.clear();
				if(r<N){
					if(A[r]<M){
						data[A[r]]++;
					}
				}
				continue;
			}
			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]--;
		}
		if(l==r){
			r++;
			if(r<N){
				if(A[r]<M){
					data[A[r]]++;
				}
			}
		}
	}
	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;
	}
	cout << endl;
}
0