結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー とりゐとりゐ
提出日時 2022-05-20 22:11:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 925 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 128,832 KB
最終ジャッジ日時 2024-09-20 08:22:26
合計ジャッジ時間 20,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,992 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 38 ms
52,992 KB
testcase_07 AC 1,588 ms
85,632 KB
testcase_08 AC 80 ms
76,928 KB
testcase_09 AC 1,719 ms
84,108 KB
testcase_10 AC 2,001 ms
85,136 KB
testcase_11 AC 2,093 ms
84,752 KB
testcase_12 AC 2,065 ms
85,120 KB
testcase_13 AC 2,124 ms
85,024 KB
testcase_14 AC 1,223 ms
128,820 KB
testcase_15 AC 1,215 ms
128,832 KB
testcase_16 AC 70 ms
77,056 KB
testcase_17 TLE -
testcase_18 AC 76 ms
77,440 KB
testcase_19 AC 39 ms
52,736 KB
testcase_20 AC 41 ms
53,632 KB
testcase_21 AC 41 ms
53,632 KB
testcase_22 TLE -
testcase_23 AC 38 ms
52,992 KB
testcase_24 AC 1,109 ms
82,348 KB
testcase_25 AC 1,717 ms
84,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,sy,sx=map(int,input().split())
a=[]
for _ in range(h):
  a.append(list(map(int,input().split())))

import heapq
class HQ:
  def __init__(self,a):
    self.hq=a.copy()
    heapq.heapify(self.hq)
  
  def get(self):
    if self.hq:
      return self.hq[0]
    else:
      return False
  
  def len(self):
    return len(self.hq)

  def pop(self):
    if self.hq:
      return heapq.heappop(self.hq)
    else:
      return False
  
  def append(self,i):
    heapq.heappush(self.hq,i)

dxdy=[(0,1),(1,0),(0,-1),(-1,0)]
seen=[[False]*w for i in range(h)]

now=0
hq=HQ([(a[sy-1][sx-1],sy-1,sx-1)])

while hq.len()>0:
  c,x,y=hq.pop()
  #print(c,x,y,now)
  if seen[x][y]:continue
  seen[x][y]=True
  if x==sy-1 and y==sx-1:
    now+=c
  else:
    if now>c:
      now+=c
    else:
      print('No')
      exit()
  for dx,dy in dxdy:
    nx,ny=x+dx,y+dy
    if 0<=nx<h and 0<=ny<w:
      hq.append((a[nx][ny],nx,ny))

print('Yes')
0