結果

問題 No.2930 Larger Mex
ユーザー k82bk82b
提出日時 2024-10-12 16:06:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 1,093 ms
コンパイル使用メモリ 92,460 KB
実行使用メモリ 24,576 KB
最終ジャッジ日時 2024-10-12 16:06:58
合計ジャッジ時間 21,531 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 5 ms
6,820 KB
testcase_05 AC 5 ms
6,816 KB
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 5 ms
6,820 KB
testcase_08 AC 397 ms
6,816 KB
testcase_09 AC 406 ms
6,816 KB
testcase_10 AC 413 ms
6,816 KB
testcase_11 AC 323 ms
6,816 KB
testcase_12 AC 555 ms
11,392 KB
testcase_13 AC 477 ms
7,808 KB
testcase_14 AC 590 ms
13,696 KB
testcase_15 AC 321 ms
6,816 KB
testcase_16 AC 365 ms
6,816 KB
testcase_17 AC 422 ms
6,820 KB
testcase_18 AC 337 ms
6,816 KB
testcase_19 AC 510 ms
8,960 KB
testcase_20 AC 502 ms
7,808 KB
testcase_21 AC 466 ms
7,040 KB
testcase_22 AC 582 ms
16,000 KB
testcase_23 AC 431 ms
7,936 KB
testcase_24 AC 381 ms
6,816 KB
testcase_25 AC 563 ms
22,144 KB
testcase_26 AC 282 ms
6,816 KB
testcase_27 AC 237 ms
6,816 KB
testcase_28 AC 268 ms
6,820 KB
testcase_29 AC 271 ms
6,820 KB
testcase_30 AC 272 ms
6,820 KB
testcase_31 AC 225 ms
6,816 KB
testcase_32 AC 284 ms
6,820 KB
testcase_33 AC 297 ms
6,816 KB
testcase_34 AC 407 ms
7,808 KB
testcase_35 AC 308 ms
9,216 KB
testcase_36 AC 314 ms
6,820 KB
testcase_37 AC 482 ms
11,264 KB
testcase_38 AC 436 ms
12,672 KB
testcase_39 AC 341 ms
7,808 KB
testcase_40 AC 348 ms
8,192 KB
testcase_41 AC 349 ms
8,192 KB
testcase_42 AC 288 ms
6,820 KB
testcase_43 AC 279 ms
6,816 KB
testcase_44 AC 278 ms
6,816 KB
testcase_45 AC 284 ms
6,816 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 309 ms
6,816 KB
testcase_51 AC 430 ms
15,232 KB
testcase_52 AC 602 ms
24,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <set>
#include <vector>
using Int = long long;
int main() {
	int N, M;
	std::cin >> N >> M;
	int A[N];
	for (int i = 0; i < N; ++i) std::cin >> A[i];
	std::map<int, int> mp;
	std::set<int> st;
	Int ans[N]{};
	for (int i = 0; i < N; ++i) {
		if (A[i] < M) {
			if (mp.count(A[i])) st.erase(mp[A[i]]);
			mp[A[i]] = i;
			st.insert(i);
		}
		if (int(st.size()) == M) {
			++ans[i - *st.begin()];
			--ans[i + 1];
		}
	}
	for (int i = 1; i < N; ++i) ans[i] += ans[i - 1];
	for (int i = 0; i < N; ++i) std::cout << ans[i] << std::endl;
}
0