結果

問題 No.2930 Larger Mex
ユーザー YuuuTYuuuT
提出日時 2024-10-12 14:57:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,119 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 191,096 KB
最終ジャッジ日時 2024-10-12 14:57:34
合計ジャッジ時間 11,078 ms
ジャッジサーバーID
(参考情報)
judge3 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,856 KB
testcase_01 AC 43 ms
55,156 KB
testcase_02 AC 41 ms
56,680 KB
testcase_03 AC 59 ms
68,660 KB
testcase_04 AC 57 ms
68,388 KB
testcase_05 AC 57 ms
68,848 KB
testcase_06 AC 57 ms
68,248 KB
testcase_07 AC 57 ms
68,192 KB
testcase_08 AC 147 ms
107,204 KB
testcase_09 AC 136 ms
104,632 KB
testcase_10 AC 139 ms
107,676 KB
testcase_11 AC 118 ms
100,108 KB
testcase_12 AC 184 ms
119,512 KB
testcase_13 AC 153 ms
111,388 KB
testcase_14 AC 220 ms
151,596 KB
testcase_15 AC 132 ms
103,040 KB
testcase_16 AC 131 ms
100,952 KB
testcase_17 AC 142 ms
107,720 KB
testcase_18 AC 137 ms
103,480 KB
testcase_19 AC 176 ms
107,852 KB
testcase_20 AC 166 ms
108,236 KB
testcase_21 AC 154 ms
108,360 KB
testcase_22 AC 214 ms
144,280 KB
testcase_23 AC 154 ms
107,312 KB
testcase_24 AC 139 ms
106,728 KB
testcase_25 AC 233 ms
174,352 KB
testcase_26 AC 131 ms
121,544 KB
testcase_27 AC 113 ms
104,568 KB
testcase_28 AC 128 ms
112,508 KB
testcase_29 AC 123 ms
110,396 KB
testcase_30 AC 120 ms
107,184 KB
testcase_31 AC 113 ms
103,036 KB
testcase_32 AC 135 ms
119,052 KB
testcase_33 AC 131 ms
105,164 KB
testcase_34 AC 200 ms
109,432 KB
testcase_35 AC 142 ms
108,052 KB
testcase_36 AC 202 ms
109,852 KB
testcase_37 AC 172 ms
115,796 KB
testcase_38 AC 186 ms
117,564 KB
testcase_39 AC 174 ms
115,180 KB
testcase_40 AC 170 ms
110,348 KB
testcase_41 AC 162 ms
107,064 KB
testcase_42 AC 121 ms
106,832 KB
testcase_43 AC 114 ms
102,464 KB
testcase_44 AC 126 ms
111,292 KB
testcase_45 AC 128 ms
110,076 KB
testcase_46 AC 161 ms
113,696 KB
testcase_47 AC 159 ms
113,560 KB
testcase_48 AC 127 ms
108,268 KB
testcase_49 AC 170 ms
114,120 KB
testcase_50 AC 143 ms
105,952 KB
testcase_51 AC 221 ms
157,224 KB
testcase_52 AC 242 ms
191,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# oj t -c "python3 main.py"
import sys,math
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect_left,bisect_right
from heapq import heappop,heappush,heapify
#from more_itertools import distinct_permutations,distinct_combinations
#from sortedcontainers import SortedList,SortedSet
def input():return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
inf = pow(10,18)
mod = 998244353
#/////////////////////////////////
N,M = ms()
A = li()
ans = [0]*(N+2)
r = 0
tmp = set()
cnt = defaultdict(int)
for i in range(M):
    tmp.add(i)
for l in range(N):
    if r<l: r = l
    if len(tmp)>0:
        while r<N and len(tmp)>0:
            cnt[A[r]] += 1
            if cnt[A[r]]==1: tmp.discard(A[r])
            r += 1
    #print(l,r)
    if len(tmp)==0:
        ans[r-l] += 1
        ans[N-l+1] -= 1
    cnt[A[l]] -= 1
    if cnt[A[l]]==0 and A[l]<M:
        tmp.add(A[l])
ans = list(accumulate(ans))
for k in range(1,N+1):
    print(ans[k])
0