結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー siganaisiganai
提出日時 2022-05-20 23:05:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 809 bytes
コンパイル時間 997 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 98,524 KB
最終ジャッジ日時 2024-09-20 09:29:13
合計ジャッジ時間 9,492 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
64,428 KB
testcase_01 AC 52 ms
65,040 KB
testcase_02 AC 52 ms
65,956 KB
testcase_03 AC 52 ms
65,356 KB
testcase_04 AC 52 ms
65,072 KB
testcase_05 AC 54 ms
64,804 KB
testcase_06 AC 52 ms
64,024 KB
testcase_07 AC 471 ms
81,344 KB
testcase_08 AC 85 ms
78,180 KB
testcase_09 AC 628 ms
82,632 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 634 ms
81,800 KB
testcase_14 AC 658 ms
98,516 KB
testcase_15 AC 643 ms
98,524 KB
testcase_16 AC 76 ms
78,680 KB
testcase_17 AC 1,001 ms
94,840 KB
testcase_18 AC 76 ms
78,424 KB
testcase_19 AC 52 ms
65,068 KB
testcase_20 WA -
testcase_21 AC 55 ms
64,124 KB
testcase_22 RE -
testcase_23 WA -
testcase_24 AC 381 ms
81,804 KB
testcase_25 AC 548 ms
81,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline
h,w,y,x=map(int,input().split())
a=[list(map(int,input().split())) for _ in range(h)]
now = a[y-1][x-1]
heap = []
dx = [1,-1,0,0]
dy = [0,0,1,-1]
a[y-1][x-1] = -1
py,px=y-1,x-1
cnt = 1
while cnt < h * w:
    for i in range(4):
        ny,nx=dy[i]+py,dx[i]+px
        if 0 <= ny < h and 0 <= nx < w:
            if a[ny][nx] != -1:
                heappush(heap,[a[ny][nx],ny,nx])
                a[ny][nx] = -1
    mi,px,py = heappop(heap)
    if now > mi:
        now += mi
        cnt += 1
    else:
        print('No')
        exit()
print('Yes')
0