結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー chineristACchineristAC
提出日時 2022-05-20 22:12:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 913 ms / 3,000 ms
コード長 952 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 101,128 KB
最終ジャッジ日時 2024-09-20 08:24:08
合計ジャッジ時間 8,329 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,680 KB
testcase_01 AC 43 ms
55,808 KB
testcase_02 AC 43 ms
55,936 KB
testcase_03 AC 43 ms
55,808 KB
testcase_04 AC 40 ms
55,552 KB
testcase_05 AC 43 ms
55,680 KB
testcase_06 AC 41 ms
55,552 KB
testcase_07 AC 383 ms
82,212 KB
testcase_08 AC 78 ms
79,104 KB
testcase_09 AC 407 ms
82,296 KB
testcase_10 AC 460 ms
82,208 KB
testcase_11 AC 485 ms
82,520 KB
testcase_12 AC 458 ms
83,072 KB
testcase_13 AC 485 ms
82,716 KB
testcase_14 AC 601 ms
101,124 KB
testcase_15 AC 594 ms
101,128 KB
testcase_16 AC 69 ms
78,164 KB
testcase_17 AC 913 ms
97,164 KB
testcase_18 AC 72 ms
78,208 KB
testcase_19 AC 43 ms
55,680 KB
testcase_20 AC 43 ms
56,448 KB
testcase_21 AC 43 ms
56,064 KB
testcase_22 AC 660 ms
91,400 KB
testcase_23 AC 44 ms
56,064 KB
testcase_24 AC 287 ms
82,112 KB
testcase_25 AC 434 ms
82,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
import heapq
from itertools import permutations
from math import gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

INF = 10**17

H,W,s,t = mi()
A = [li() for i in range(H)]
s,t = s-1,t-1

move = [(-1,0),(1,0),(0,1),(0,-1)]

tmp = A[s][t]
pq = []
insert = [[False]*W for i in range(H)]
insert[s][t] = True
for x,y in move:
    nx,ny = x+s,y+t
    if 0 <= nx < H and 0 <= ny < W:
        heapq.heappush(pq,(A[nx][ny],nx,ny))
        insert[nx][ny] = True

while pq:
    val,x,y = heapq.heappop(pq)
    if val < tmp:
        tmp += val
        for dx,dy in move:
            nx,ny = x+dx,y+dy
            if 0 <= nx < H and 0 <= ny < W and not insert[nx][ny]:
                heapq.heappush(pq,(A[nx][ny],nx,ny))
                insert[nx][ny] = True
    else:
        print("No")
        break
else:
    print("Yes")

    
0