結果

問題 No.2731 Two Colors
ユーザー ああいいああいい
提出日時 2024-05-23 19:17:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,862 ms / 3,000 ms
コード長 829 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 131,132 KB
最終ジャッジ日時 2024-05-23 19:18:26
合計ジャッジ時間 25,987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,862 ms
118,812 KB
testcase_01 AC 2,762 ms
119,244 KB
testcase_02 AC 2,747 ms
118,568 KB
testcase_03 AC 85 ms
76,688 KB
testcase_04 AC 128 ms
79,016 KB
testcase_05 AC 142 ms
79,168 KB
testcase_06 AC 268 ms
85,264 KB
testcase_07 AC 187 ms
83,808 KB
testcase_08 AC 119 ms
78,656 KB
testcase_09 AC 428 ms
103,960 KB
testcase_10 AC 110 ms
77,912 KB
testcase_11 AC 931 ms
128,616 KB
testcase_12 AC 455 ms
104,008 KB
testcase_13 AC 775 ms
121,024 KB
testcase_14 AC 274 ms
89,164 KB
testcase_15 AC 141 ms
78,780 KB
testcase_16 AC 381 ms
96,516 KB
testcase_17 AC 427 ms
99,008 KB
testcase_18 AC 175 ms
81,912 KB
testcase_19 AC 440 ms
98,468 KB
testcase_20 AC 282 ms
91,796 KB
testcase_21 AC 194 ms
81,928 KB
testcase_22 AC 629 ms
115,044 KB
testcase_23 AC 260 ms
86,872 KB
testcase_24 AC 175 ms
81,532 KB
testcase_25 AC 91 ms
76,980 KB
testcase_26 AC 431 ms
102,396 KB
testcase_27 AC 586 ms
110,844 KB
testcase_28 AC 580 ms
106,824 KB
testcase_29 AC 233 ms
85,496 KB
testcase_30 AC 272 ms
88,832 KB
testcase_31 AC 290 ms
88,020 KB
testcase_32 AC 925 ms
131,132 KB
testcase_33 AC 32 ms
53,148 KB
testcase_34 AC 37 ms
53,544 KB
testcase_35 AC 36 ms
53,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(H)]

dat = [[-1] * W for _ in range(H)]
#dat[0][0] = 1
#dat[-1][-1] = 0

import heapq
import sys

o = [(A[0][0],0,0)]
e = [(A[-1][-1],H-1,W-1)]

ans = 0
for _ in range(1,H * W+1):
    
    if _ % 2 == 0:
        q = e
        j = 0
    else:
        q = o
        j = 1
    while q:
        a,x,y = heapq.heappop(q)
        if dat[x][y] != -1:continue
        else:break
    dat[x][y] = j
    #print(x,y)
    ans += 1
    for u,v in [(0,-1),(0,1),(1,0),(-1,0)]:
        if 0 <= x + u < H and 0 <= y + v < W:
            k = dat[x + u][y + v]
            if k == 1 - j:
                print(ans - 2)
                exit()
            elif k == -1:
                heapq.heappush(q,(A[x + u][y + v],x + u,y + v))
                
                
0