結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー nohakai3nohakai3
提出日時 2022-07-30 11:37:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,532 ms / 3,000 ms
コード長 528 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,744 KB
最終ジャッジ日時 2024-07-20 07:53:41
合計ジャッジ時間 16,708 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 1,184 ms
21,760 KB
testcase_08 AC 116 ms
22,912 KB
testcase_09 AC 1,252 ms
22,912 KB
testcase_10 AC 1,263 ms
23,040 KB
testcase_11 AC 1,254 ms
22,912 KB
testcase_12 AC 1,238 ms
22,784 KB
testcase_13 AC 1,183 ms
14,976 KB
testcase_14 AC 995 ms
31,616 KB
testcase_15 AC 998 ms
31,744 KB
testcase_16 AC 99 ms
14,848 KB
testcase_17 AC 1,532 ms
23,552 KB
testcase_18 AC 98 ms
14,976 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 1,308 ms
21,888 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 677 ms
15,104 KB
testcase_25 AC 1,193 ms
22,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,x,y=map(int,input().split())
dx=[0,0,1,-1]
dy=[1,-1,0,0]
a=[list(map(int,input().split())) for i in range(h)]
d=[[0]*w for i in range(h)]
d[x-1][y-1]=1
hq=[(a[x-1][y-1],x-1,y-1)]
t,cnt=0,0
import heapq
while hq:
    p,x,y=heapq.heappop(hq)
    if cnt>0 and t<=a[x][y]:exit(print("No"))
    cnt+=1
    t+=a[x][y]
    for i in range(4):
        if 0<=x+dx[i]<h and 0<=y+dy[i]<w and d[x+dx[i]][y+dy[i]]==0:
            d[x+dx[i]][y+dy[i]]=1
            heapq.heappush(hq,(a[x+dx[i]][y+dy[i]],x+dx[i],y+dy[i]))
    
print("Yes")
0