結果

問題 No.2731 Two Colors
ユーザー moon17moon17
提出日時 2024-04-19 22:47:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,988 ms / 3,000 ms
コード長 708 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 191,672 KB
最終ジャッジ日時 2024-10-11 16:40:12
合計ジャッジ時間 21,792 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,980 ms
191,392 KB
testcase_01 AC 1,977 ms
191,672 KB
testcase_02 AC 1,988 ms
191,672 KB
testcase_03 AC 102 ms
77,464 KB
testcase_04 AC 145 ms
82,176 KB
testcase_05 AC 144 ms
79,616 KB
testcase_06 AC 265 ms
91,828 KB
testcase_07 AC 230 ms
95,116 KB
testcase_08 AC 133 ms
79,164 KB
testcase_09 AC 573 ms
148,260 KB
testcase_10 AC 113 ms
77,516 KB
testcase_11 AC 983 ms
143,412 KB
testcase_12 AC 558 ms
148,408 KB
testcase_13 AC 828 ms
133,592 KB
testcase_14 AC 339 ms
107,348 KB
testcase_15 AC 130 ms
78,532 KB
testcase_16 AC 442 ms
103,280 KB
testcase_17 AC 482 ms
116,172 KB
testcase_18 AC 187 ms
82,268 KB
testcase_19 AC 456 ms
104,320 KB
testcase_20 AC 360 ms
123,632 KB
testcase_21 AC 199 ms
83,476 KB
testcase_22 AC 741 ms
149,332 KB
testcase_23 AC 283 ms
92,628 KB
testcase_24 AC 201 ms
84,768 KB
testcase_25 AC 102 ms
77,184 KB
testcase_26 AC 527 ms
135,148 KB
testcase_27 AC 664 ms
149,644 KB
testcase_28 AC 577 ms
121,452 KB
testcase_29 AC 257 ms
89,856 KB
testcase_30 AC 321 ms
101,664 KB
testcase_31 AC 311 ms
91,624 KB
testcase_32 AC 991 ms
166,536 KB
testcase_33 AC 39 ms
52,480 KB
testcase_34 AC 39 ms
52,864 KB
testcase_35 AC 40 ms
53,120 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),(h-2,w-1,0),(h-1,w-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