結果

問題 No.2930 Larger Mex
ユーザー a1048576a1048576
提出日時 2024-10-12 15:21:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 1,671 ms
コンパイル使用メモリ 171,032 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-10-12 15:21:55
合計ジャッジ時間 18,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 291 ms
7,680 KB
testcase_09 AC 271 ms
7,552 KB
testcase_10 AC 308 ms
7,808 KB
testcase_11 AC 245 ms
7,296 KB
testcase_12 AC 313 ms
7,936 KB
testcase_13 AC 311 ms
7,936 KB
testcase_14 AC 326 ms
7,936 KB
testcase_15 AC 271 ms
7,552 KB
testcase_16 AC 262 ms
7,424 KB
testcase_17 AC 308 ms
8,064 KB
testcase_18 AC 260 ms
7,424 KB
testcase_19 AC 316 ms
7,936 KB
testcase_20 AC 310 ms
7,936 KB
testcase_21 AC 308 ms
7,936 KB
testcase_22 AC 314 ms
7,808 KB
testcase_23 AC 276 ms
7,552 KB
testcase_24 AC 305 ms
7,808 KB
testcase_25 AC 313 ms
7,808 KB
testcase_26 AC 283 ms
7,808 KB
testcase_27 AC 233 ms
7,296 KB
testcase_28 AC 265 ms
7,552 KB
testcase_29 AC 266 ms
7,552 KB
testcase_30 AC 277 ms
7,424 KB
testcase_31 AC 233 ms
7,040 KB
testcase_32 AC 283 ms
7,552 KB
testcase_33 AC 294 ms
7,680 KB
testcase_34 AC 306 ms
7,808 KB
testcase_35 AC 193 ms
6,656 KB
testcase_36 AC 308 ms
7,680 KB
testcase_37 AC 292 ms
7,680 KB
testcase_38 AC 306 ms
7,808 KB
testcase_39 AC 306 ms
7,808 KB
testcase_40 AC 309 ms
7,808 KB
testcase_41 AC 280 ms
7,552 KB
testcase_42 AC 279 ms
7,680 KB
testcase_43 AC 267 ms
7,552 KB
testcase_44 AC 268 ms
7,680 KB
testcase_45 AC 268 ms
7,680 KB
testcase_46 AC 313 ms
7,808 KB
testcase_47 AC 309 ms
7,680 KB
testcase_48 AC 220 ms
6,912 KB
testcase_49 AC 322 ms
7,808 KB
testcase_50 AC 298 ms
7,936 KB
testcase_51 AC 320 ms
7,936 KB
testcase_52 AC 317 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main() {
	int n,m;
	cin >> n >> m;
	vector<int> a(n);
	int s = 200000;
	for(int i = 0; i < n; i++) cin >> a[i];
	vector<int> ans(n+2,0);
	vector<int> b(s+1,0);
	int r = 0;
	int c = 0;
	if(m == 0) {
		for(int i = n; i > 0; i--) cout << i << endl;
		return 0;
	}
	for(int i = 0; i < n; i++) {
		while(c < m) {
			if(r == n) break;
			b[a[r]]++;
			if(b[a[r]] == 1 && a[r] < m) c++;
			r++;
		}
		if(r == n && c < m) break;
		ans[r-i]++;
		ans[n-i+1]--;
		b[a[i]]--;
		if(b[a[i]] == 0 && a[i] < m) c--;
	}
	for(int i = 1; i <= n; i++) {
		ans[i]+=ans[i-1];
		cout << ans[i] << endl;
	}
}
0