結果

問題 No.2930 Larger Mex
ユーザー achapiachapi
提出日時 2024-10-12 16:52:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 210,592 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-10-12 16:53:16
合計ジャッジ時間 20,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 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,820 KB
testcase_05 AC 5 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 5 ms
6,816 KB
testcase_08 AC 367 ms
6,816 KB
testcase_09 AC 325 ms
6,816 KB
testcase_10 AC 362 ms
6,816 KB
testcase_11 AC 282 ms
6,816 KB
testcase_12 AC 423 ms
7,552 KB
testcase_13 AC 397 ms
6,820 KB
testcase_14 AC 477 ms
8,704 KB
testcase_15 AC 284 ms
6,816 KB
testcase_16 AC 309 ms
6,820 KB
testcase_17 AC 377 ms
6,816 KB
testcase_18 AC 282 ms
6,816 KB
testcase_19 AC 409 ms
6,816 KB
testcase_20 AC 418 ms
6,816 KB
testcase_21 AC 386 ms
6,816 KB
testcase_22 AC 470 ms
9,984 KB
testcase_23 AC 385 ms
6,820 KB
testcase_24 AC 340 ms
6,816 KB
testcase_25 AC 483 ms
12,928 KB
testcase_26 AC 269 ms
6,816 KB
testcase_27 AC 218 ms
6,820 KB
testcase_28 AC 247 ms
6,820 KB
testcase_29 AC 245 ms
6,816 KB
testcase_30 AC 269 ms
6,816 KB
testcase_31 AC 219 ms
6,816 KB
testcase_32 AC 260 ms
6,816 KB
testcase_33 AC 279 ms
6,816 KB
testcase_34 AC 364 ms
6,816 KB
testcase_35 AC 260 ms
6,816 KB
testcase_36 AC 289 ms
6,816 KB
testcase_37 AC 383 ms
7,424 KB
testcase_38 AC 392 ms
7,936 KB
testcase_39 AC 315 ms
6,820 KB
testcase_40 AC 320 ms
6,816 KB
testcase_41 AC 326 ms
6,816 KB
testcase_42 AC 257 ms
6,820 KB
testcase_43 AC 249 ms
6,816 KB
testcase_44 AC 259 ms
6,820 KB
testcase_45 AC 283 ms
6,820 KB
testcase_46 AC 289 ms
6,820 KB
testcase_47 AC 280 ms
6,816 KB
testcase_48 AC 204 ms
6,816 KB
testcase_49 AC 329 ms
6,816 KB
testcase_50 AC 286 ms
6,816 KB
testcase_51 AC 385 ms
9,472 KB
testcase_52 AC 536 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
	int N, M;
	cin >> N >> M;
	vector<int> A(N);
	for (int i = 0; i < N; i++){
		cin >> A[i];
	}
	vector<int> ans(N + 2);
	int cnt = M;
	map<int, int> mp;
	int r = 0;
	for (int l = 0; l < N; l++){
		while (r < N){
			if (cnt == 0){
				break;
			}
			if (A[r] < M){
				if (mp[A[r]] == 0){
					cnt--;
				}
				mp[A[r]]++;
			}
			r++;
		}
		if (cnt == 0){
			ans[r - l]++;
			ans[N - l + 1]--;
		}
		if (A[l] < M){
			if (mp[A[l]] == 1){
				cnt++;
			}
			mp[A[l]]--;
		}
		if (l == r){
			r++;
		}
	}
	for (int i = 0; i < N; i++){
		ans[i + 1] += ans[i];
	}
	for (int i = 1; i <= N; i++){
		cout << ans[i] << endl;
	}
}
0