結果

問題 No.20 砂漠のオアシス
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-12-31 09:49:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 723 bytes
コンパイル時間 762 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 86,020 KB
最終ジャッジ日時 2024-10-07 23:39:15
合計ジャッジ時間 3,698 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,712 KB
testcase_01 AC 52 ms
62,140 KB
testcase_02 AC 50 ms
61,356 KB
testcase_03 AC 59 ms
68,864 KB
testcase_04 AC 72 ms
74,200 KB
testcase_05 AC 226 ms
85,324 KB
testcase_06 AC 225 ms
85,584 KB
testcase_07 AC 223 ms
86,020 KB
testcase_08 AC 205 ms
84,008 KB
testcase_09 AC 190 ms
82,872 KB
testcase_10 WA -
testcase_11 AC 42 ms
53,800 KB
testcase_12 WA -
testcase_13 AC 66 ms
70,384 KB
testcase_14 AC 77 ms
76,404 KB
testcase_15 AC 68 ms
72,560 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 84 ms
76,544 KB
testcase_20 AC 61 ms
68,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,v,x,y = map(int,input().split())
L = [list(map(int,input().split())) for i in range(n)]
inf = 10**10

def bfs(sx,sy):
    dis = [[inf]*n for i in range(n)]
    dis[sx][sy] = 0
    q = deque([[sx,sy]])
    while q:
        nx,ny = q.popleft()
        for (i,j) in ((1,0),(-1,0),(0,1),(0,-1)):
            nnx = nx+i
            nny = ny+j
            if 0 <= nnx < n and 0 <= nny < n and dis[nnx][nny] > dis[nx][ny]+L[nnx][nny]:
                dis[nnx][nny] = dis[nx][ny]+L[nnx][nny]
                q.append([nnx,nny])
    return dis


dis0 = bfs(0,0)
diso = bfs(x-1,y-1)
ans = "NO"
if dis0[-1][-1] < v:
    ans = "YES"

if diso[-1][-1] < (v-dis0[x-1][y-1])*2:
    ans = "YES" 
print(ans) 
0