結果

問題 No.2731 Two Colors
ユーザー moon17moon17
提出日時 2024-04-19 22:46:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 708 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 191,756 KB
最終ジャッジ日時 2024-10-11 16:35:44
合計ジャッジ時間 13,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,893 ms
191,756 KB
testcase_01 AC 1,866 ms
191,136 KB
testcase_02 AC 1,904 ms
191,156 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 39 ms
52,608 KB
testcase_34 AC 40 ms
52,608 KB
testcase_35 AC 40 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import*
(h,w),*a=[[*map(int,s.split())]for s in open(0)]
c=[[-1]*w for _ in range(h)]
c[0][0]=1
c[-1][-1]=0
q=[[]for _ in range(2)]
for i,j,k in[(1,0,1),(0,1,1),(w-2,h-1,0),(w-1,h-2,0)]:
  if 0<=i<h and 0<=j<w:
    q[k]+=(a[i][j],i,j),
q[0].sort()
q[1].sort()
f=[[[0]*2 for _ in range(w)]for _ in range(h)]
k=1
while q[k]:
  p,i,j=heappop(q[k])
  if c[i][j]!=-1:
    continue
  c[i][j]=k
  ng=0
  for di,dj in[(-1,0),(1,0),(0,1),(0,-1)]:
    ni,nj=i+di,j+dj
    if 0<=ni<h and 0<=nj<w:
      if c[ni][nj]==k^1:
        ng=1
      if c[ni][nj]==-1 and f[ni][nj][k]<1:
        heappush(q[k],(a[ni][nj],ni,nj))
        f[ni][nj][k]=1
  if ng:
    break
  k^=1
print(sum(i!=-1for j in c for i in j)-2)
0