結果

問題 No.2930 Larger Mex
ユーザー hiro1729hiro1729
提出日時 2024-10-12 16:07:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 122,852 KB
最終ジャッジ日時 2024-10-12 16:07:12
合計ジャッジ時間 10,736 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 65 ms
67,072 KB
testcase_04 AC 56 ms
63,616 KB
testcase_05 AC 94 ms
65,408 KB
testcase_06 AC 57 ms
63,232 KB
testcase_07 AC 57 ms
63,616 KB
testcase_08 AC 131 ms
107,904 KB
testcase_09 AC 122 ms
104,832 KB
testcase_10 AC 126 ms
107,684 KB
testcase_11 AC 110 ms
100,636 KB
testcase_12 AC 157 ms
111,764 KB
testcase_13 AC 135 ms
109,824 KB
testcase_14 AC 173 ms
111,488 KB
testcase_15 AC 140 ms
102,868 KB
testcase_16 AC 148 ms
101,976 KB
testcase_17 AC 164 ms
107,756 KB
testcase_18 AC 143 ms
103,296 KB
testcase_19 AC 182 ms
109,920 KB
testcase_20 AC 177 ms
109,696 KB
testcase_21 AC 172 ms
109,060 KB
testcase_22 AC 200 ms
111,984 KB
testcase_23 AC 165 ms
106,624 KB
testcase_24 AC 158 ms
106,880 KB
testcase_25 AC 253 ms
114,252 KB
testcase_26 AC 128 ms
122,852 KB
testcase_27 AC 110 ms
111,232 KB
testcase_28 AC 121 ms
116,992 KB
testcase_29 AC 124 ms
116,480 KB
testcase_30 AC 114 ms
105,472 KB
testcase_31 AC 100 ms
99,584 KB
testcase_32 AC 114 ms
107,896 KB
testcase_33 AC 140 ms
105,936 KB
testcase_34 AC 171 ms
109,056 KB
testcase_35 AC 118 ms
100,500 KB
testcase_36 AC 147 ms
107,444 KB
testcase_37 AC 148 ms
107,904 KB
testcase_38 AC 172 ms
110,848 KB
testcase_39 AC 166 ms
109,824 KB
testcase_40 AC 164 ms
110,028 KB
testcase_41 AC 153 ms
106,276 KB
testcase_42 AC 119 ms
115,712 KB
testcase_43 AC 117 ms
112,852 KB
testcase_44 AC 116 ms
114,176 KB
testcase_45 AC 120 ms
114,048 KB
testcase_46 AC 73 ms
75,904 KB
testcase_47 AC 83 ms
75,904 KB
testcase_48 AC 68 ms
75,796 KB
testcase_49 AC 87 ms
75,972 KB
testcase_50 AC 146 ms
112,768 KB
testcase_51 AC 192 ms
111,744 KB
testcase_52 AC 236 ms
116,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
if M == 0:
	for i in range(N):
		print(N - i)
	exit()
A = list(map(int, input().split()))
B = [[] for _ in range(M)]
C = [-1] * N
for i in range(N):
	if A[i] < M:
		C[i] = len(B[A[i]])
		B[A[i]].append(i)
if any(len(B[i]) == 0 for i in range(M)):
	for i in range(N):
		print(0)
	exit()

last = []
last.append(max(B[i][0] for i in range(M)))
for i in range(1, N):
	if C[i - 1] == -1 or last[-1] == -1:
		last.append(last[-1])
	else:
		if C[i - 1] == len(B[A[i - 1]]) - 1:
			last.append(-1)
		else:
			last.append(max(last[-1], B[A[i - 1]][C[i - 1] + 1]))

# i に対して、A[i], ..., A[j] に 0, 1, ..., M - 1 が全て現れる最小の j が last[i] (存在しなければ -1)
# 累積和

ac = [0] * (N + 1)
for i in range(N):
	if last[i] != -1:
		ac[N - i] -= 1
		ac[last[i] - i] += 1
for i in range(N):
	ac[i + 1] += ac[i]
for i in range(N):
	print(ac[i])
0