結果

問題 No.2836 Comment Out
ユーザー timitimi
提出日時 2024-08-09 23:02:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,008 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 115,200 KB
最終ジャッジ日時 2024-08-09 23:02:15
合計ジャッジ時間 6,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 40 ms
53,760 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 41 ms
53,888 KB
testcase_07 AC 82 ms
98,944 KB
testcase_08 AC 75 ms
98,688 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 103 ms
113,044 KB
testcase_15 AC 105 ms
112,664 KB
testcase_16 AC 103 ms
112,596 KB
testcase_17 WA -
testcase_18 AC 106 ms
112,120 KB
testcase_19 WA -
testcase_20 AC 115 ms
112,516 KB
testcase_21 AC 104 ms
112,508 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 67 ms
90,496 KB
testcase_25 AC 107 ms
115,200 KB
testcase_26 AC 77 ms
89,600 KB
testcase_27 AC 81 ms
104,320 KB
testcase_28 WA -
testcase_29 AC 78 ms
102,400 KB
testcase_30 AC 62 ms
84,336 KB
testcase_31 AC 75 ms
99,968 KB
testcase_32 WA -
testcase_33 AC 90 ms
100,864 KB
testcase_34 AC 55 ms
76,544 KB
testcase_35 AC 85 ms
110,208 KB
testcase_36 WA -
testcase_37 AC 89 ms
109,696 KB
testcase_38 AC 73 ms
94,848 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 79 ms
102,144 KB
testcase_42 WA -
testcase_43 AC 69 ms
80,764 KB
testcase_44 AC 41 ms
53,888 KB
testcase_45 WA -
testcase_46 AC 37 ms
51,968 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 35 ms
51,712 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 36 ms
51,968 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# N,M,K=map(int, input().split())
# D=[[] for i in range(N)]
# for i in range(M):
#   a,b,d=map(int, input().split())
#   a-=1;b-=1
#   D[a].append((d,b));D[b].append((d,a))

N=int(input())
A=list(map(int, input().split()))

D={}
B=[-100]
for i in range(N):
  a=A[i]
  if i>=1 and B[-1]==a:
    continue
  B.append(a)
B.append(-100)

if max(B)>N:
  print('No')
  exit()
  
from collections import deque
d=deque()
D={}
f=0 
for i in range(1,len(B)-1):
  if B[i-1]<B[i] and B[i]>B[i+1]:
    b=B[i]
    if b not in D:
      D[b]=[]
    D[b].append(i)
    
    
V=[0]*len(B)
V[0]=1;V[-1]=1
for i in range(max(B),1,-1):  
  if i in D:
    for nex in D[i]:
      d.append(nex)
  nd=deque()
  while d:
    ff=0 
    now=d.popleft()
    if B[now-1]+1==B[now]:
      ff=1 
      if V[now-1]==0:
        V[now-1]=1
        nd.append(now-1)
    if B[now+1]+1==B[now]:
      ff=1 
      if V[now+1]==0:
        V[now+1]=1
        nd.append(now+1)
  if ff==0:
    print('No')
    exit()    
  else:
    d=nd 
print('Yes')
0