結果

問題 No.34 砂漠の行商人
ユーザー しらっ亭しらっ亭
提出日時 2015-08-15 05:58:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,571 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,080 KB
最終ジャッジ日時 2024-07-18 09:34:01
合計ジャッジ時間 9,199 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 49 ms
11,008 KB
testcase_05 WA -
testcase_06 AC 45 ms
11,008 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 183 ms
11,648 KB
testcase_10 AC 127 ms
11,648 KB
testcase_11 AC 38 ms
11,264 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 487 ms
12,160 KB
testcase_14 AC 382 ms
12,032 KB
testcase_15 AC 27 ms
10,880 KB
testcase_16 AC 51 ms
11,136 KB
testcase_17 AC 26 ms
10,880 KB
testcase_18 AC 26 ms
10,880 KB
testcase_19 AC 135 ms
11,904 KB
testcase_20 AC 201 ms
12,032 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# http://yukicoder.me/submissions/42588 が凄い! 感動した!

def solve():
    N, V, Sx, Sy, Gx, Gy = list(map(int, input().split()))
    L = []
    for i in range(N):
        L.append(list(map(int, input().split())))
    Sy -= 1
    Sx -= 1
    Gy -= 1
    Gx -= 1

    dy = (-1, 0, 1, 0)
    dx = (0, -1, 0, 1)

    fs = {(Sy, Sx): V}

    vs = [[0 for x in range(N)] for y in range(N)]
    vs[Sy][Sx] = V

    s = 0

    while fs:
        # 1歩ずつ、探す範囲を拡大していく
        s += 1
        # 次に探索する範囲。今いる範囲から1歩広げつつ、今の体力で行ける範囲を探す
        nfs = {}
        for (y, x), v in fs.items():
            for d in range(4):
                ny = y + dy[d]
                nx = x + dx[d]
                if 0 <= ny < N and 0 <= nx < N:
                    nv = v - L[ny][nx]
                    if nv < vs[ny][nx]:
                        # (ny, nx) に移動したときに残る体力が、過去に歩数が小さくそこに来た時より小さい場合、この先を探索する価値はない
                        continue
                    if ny == Gy and nx == Gx:
                        print(s)
                        return
                    # (ny, nx) に至る最大体力を更新する
                    vs[ny][nx] = nv
                    nfs[ny, nx] = nv
                    # (1, 1) を残体力 2 の歩数 1 で探した後、残耐力 3 の歩数 4 で探したりする
            fs = nfs
    print(-1)


if __name__ == '__main__':
    solve()
0