結果

問題 No.2930 Larger Mex
ユーザー timitimi
提出日時 2024-10-20 14:04:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 140,068 KB
最終ジャッジ日時 2024-10-20 14:04:31
合計ジャッジ時間 10,059 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,764 KB
testcase_01 AC 36 ms
52,744 KB
testcase_02 AC 37 ms
52,668 KB
testcase_03 AC 55 ms
65,404 KB
testcase_04 AC 53 ms
66,952 KB
testcase_05 AC 57 ms
65,740 KB
testcase_06 AC 55 ms
65,540 KB
testcase_07 AC 53 ms
67,192 KB
testcase_08 AC 118 ms
105,708 KB
testcase_09 AC 113 ms
103,176 KB
testcase_10 AC 116 ms
105,812 KB
testcase_11 AC 100 ms
99,416 KB
testcase_12 AC 143 ms
123,304 KB
testcase_13 AC 122 ms
110,420 KB
testcase_14 AC 167 ms
138,840 KB
testcase_15 AC 110 ms
102,264 KB
testcase_16 AC 110 ms
99,632 KB
testcase_17 AC 117 ms
106,104 KB
testcase_18 AC 110 ms
102,256 KB
testcase_19 AC 126 ms
110,676 KB
testcase_20 AC 129 ms
108,808 KB
testcase_21 AC 123 ms
106,956 KB
testcase_22 AC 149 ms
123,768 KB
testcase_23 AC 121 ms
105,896 KB
testcase_24 AC 118 ms
105,528 KB
testcase_25 AC 169 ms
134,212 KB
testcase_26 AC 122 ms
122,868 KB
testcase_27 AC 101 ms
104,448 KB
testcase_28 AC 113 ms
112,748 KB
testcase_29 AC 107 ms
110,340 KB
testcase_30 AC 107 ms
105,432 KB
testcase_31 AC 100 ms
102,256 KB
testcase_32 AC 117 ms
118,380 KB
testcase_33 AC 113 ms
107,992 KB
testcase_34 AC 131 ms
108,500 KB
testcase_35 AC 109 ms
103,980 KB
testcase_36 AC 121 ms
106,080 KB
testcase_37 AC 128 ms
114,696 KB
testcase_38 AC 142 ms
116,852 KB
testcase_39 AC 130 ms
108,816 KB
testcase_40 AC 139 ms
109,068 KB
testcase_41 AC 119 ms
105,604 KB
testcase_42 AC 107 ms
106,340 KB
testcase_43 AC 102 ms
102,208 KB
testcase_44 AC 112 ms
111,372 KB
testcase_45 AC 108 ms
110,600 KB
testcase_46 AC 109 ms
105,288 KB
testcase_47 AC 103 ms
105,596 KB
testcase_48 AC 89 ms
95,716 KB
testcase_49 AC 103 ms
105,720 KB
testcase_50 AC 122 ms
104,940 KB
testcase_51 AC 146 ms
121,776 KB
testcase_52 AC 177 ms
140,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
#N,Q=map(int, input().split())
import heapq 
from heapq import heappop,heappush,heapify
from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline

N,M=map(int, input().split())
A=list(map(int, input().split()))
if M==0:
  for i in range(N):
    print(N-i)
  exit()

C=[0]*(N+2)

D=[0]*M
S=set()
for i in range(M):
  S.add(i)

r=0
for i in range(N):
  while r!=N and len(S)!=0:
    a=A[r]
    if a<M:
      if D[a]==0:
        S.remove(a)
      D[a]+=1 
    r+=1
  if len(S)==0:
    s=r-i;t=N-i
    C[s-1]+=1
    C[t]-=1
  a=A[i]
  if a<M:
    if D[a]==1:
      S.add(a)
    D[a]-=1

for i in range(1,N):
  C[i]+=C[i-1]

for i in range(N):
  print(C[i])
0