結果
問題 | No.1949 足し算するだけのパズルゲーム(2) |
ユーザー | norioc |
提出日時 | 2022-05-20 22:40:22 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 767 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 82,548 KB |
実行使用メモリ | 137,104 KB |
最終ジャッジ日時 | 2024-09-20 08:59:48 |
合計ジャッジ時間 | 11,164 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,608 KB |
testcase_01 | AC | 43 ms
52,096 KB |
testcase_02 | AC | 39 ms
52,480 KB |
testcase_03 | AC | 40 ms
53,120 KB |
testcase_04 | AC | 39 ms
52,864 KB |
testcase_05 | AC | 39 ms
52,480 KB |
testcase_06 | AC | 40 ms
52,748 KB |
testcase_07 | AC | 641 ms
119,688 KB |
testcase_08 | AC | 80 ms
76,572 KB |
testcase_09 | AC | 679 ms
120,056 KB |
testcase_10 | AC | 728 ms
120,404 KB |
testcase_11 | AC | 763 ms
122,112 KB |
testcase_12 | AC | 769 ms
120,728 KB |
testcase_13 | WA | - |
testcase_14 | AC | 788 ms
137,104 KB |
testcase_15 | AC | 781 ms
137,056 KB |
testcase_16 | AC | 71 ms
76,800 KB |
testcase_17 | AC | 1,283 ms
134,524 KB |
testcase_18 | AC | 71 ms
77,184 KB |
testcase_19 | AC | 38 ms
52,096 KB |
testcase_20 | AC | 39 ms
52,480 KB |
testcase_21 | WA | - |
testcase_22 | AC | 955 ms
128,716 KB |
testcase_23 | AC | 39 ms
52,736 KB |
testcase_24 | AC | 425 ms
97,788 KB |
testcase_25 | AC | 657 ms
119,500 KB |
ソースコード
from heapq import heappush, heappop H, W, Y, X = map(int, input().split()) A = [] for _ in range(H): A.append(list(map(int, input().split()))) def delta(row, col): for dr, dc in [(-1, 0), (1, 0), (0, -1), (0, 1)]: r = row + dr c = col + dc if not (0 <= r < H and 0 <= c < W): continue yield r, c row = Y-1 col = X-1 atk = A[row][col] q = [] used = {(row, col)} for r, c in delta(row, col): heappush(q, (A[r][c], r, c)) used.add((r, c)) while q: a, row, col = heappop(q) if a >= atk: break atk += a for r, c in delta(row, col): if (r, c) in used: continue heappush(q, (A[r][c], r, c)) used.add((r, c)) if len(used) == H * W: print('Yes') else: print('No')