結果

問題 No.2930 Larger Mex
ユーザー k82bk82b
提出日時 2024-10-12 16:09:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 895 ms
コンパイル使用メモリ 91,412 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-10-12 16:10:12
合計ジャッジ時間 19,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 381 ms
5,504 KB
testcase_09 AC 372 ms
5,760 KB
testcase_10 AC 384 ms
5,504 KB
testcase_11 AC 302 ms
5,248 KB
testcase_12 AC 490 ms
10,624 KB
testcase_13 AC 447 ms
7,168 KB
testcase_14 AC 503 ms
12,928 KB
testcase_15 AC 305 ms
5,248 KB
testcase_16 AC 335 ms
5,632 KB
testcase_17 AC 397 ms
5,376 KB
testcase_18 AC 327 ms
5,248 KB
testcase_19 AC 465 ms
8,192 KB
testcase_20 AC 452 ms
7,040 KB
testcase_21 AC 432 ms
6,144 KB
testcase_22 AC 493 ms
15,360 KB
testcase_23 AC 405 ms
7,168 KB
testcase_24 AC 368 ms
5,248 KB
testcase_25 AC 499 ms
21,376 KB
testcase_26 AC 265 ms
5,248 KB
testcase_27 AC 227 ms
5,248 KB
testcase_28 AC 245 ms
5,248 KB
testcase_29 AC 253 ms
5,248 KB
testcase_30 AC 252 ms
5,248 KB
testcase_31 AC 219 ms
5,248 KB
testcase_32 AC 258 ms
5,248 KB
testcase_33 AC 272 ms
5,248 KB
testcase_34 AC 371 ms
6,912 KB
testcase_35 AC 305 ms
8,576 KB
testcase_36 AC 296 ms
5,248 KB
testcase_37 AC 433 ms
10,496 KB
testcase_38 AC 437 ms
11,776 KB
testcase_39 AC 322 ms
7,296 KB
testcase_40 AC 337 ms
7,296 KB
testcase_41 AC 344 ms
7,296 KB
testcase_42 AC 262 ms
5,248 KB
testcase_43 AC 257 ms
5,248 KB
testcase_44 AC 273 ms
5,248 KB
testcase_45 AC 262 ms
5,248 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 297 ms
5,248 KB
testcase_51 AC 397 ms
14,336 KB
testcase_52 AC 519 ms
23,808 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) {
			if (M == 0) {
				ans[i] = 1;
			} else {
				++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