結果

問題 No.659 徘徊迷路
ユーザー maspymaspy
提出日時 2020-03-07 02:21:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,012 KB
最終ジャッジ日時 2024-10-14 11:05:32
合計ジャッジ時間 9,788 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 477 ms
44,244 KB
testcase_01 AC 478 ms
44,624 KB
testcase_02 AC 484 ms
44,868 KB
testcase_03 AC 477 ms
44,236 KB
testcase_04 AC 480 ms
44,620 KB
testcase_05 AC 480 ms
44,624 KB
testcase_06 AC 486 ms
44,620 KB
testcase_07 AC 487 ms
44,620 KB
testcase_08 AC 487 ms
44,620 KB
testcase_09 AC 491 ms
44,756 KB
testcase_10 AC 484 ms
44,624 KB
testcase_11 AC 484 ms
44,752 KB
testcase_12 AC 478 ms
44,748 KB
testcase_13 AC 488 ms
45,012 KB
testcase_14 AC 484 ms
44,752 KB
testcase_15 AC 479 ms
45,004 KB
testcase_16 AC 488 ms
45,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

# %%
R, C, T = map(int, readline().split())
Sy, Sx = map(int, readline().split())
Gy, Gx = map(int, readline().split())
B = ''.join(read().decode().split())

# %%
N = R * C
graph = [[] for _ in range(N)]
mat = np.zeros((N,N))
for i in range(N):
    if B[i] == '#':
        continue
    deg = 0
    for dx in [1, -1, -C, C]:
        if B[i + dx] == '.':
            deg += 1
    if deg == 0:
        mat[i, i] = 1.0
    else:
        p = 1 / deg
        for dx in [1, -1, -C, C]:
            if B[i + dx] == '.':
                mat[i, i + dx] = 1 / deg
        


# %%
A = np.linalg.matrix_power(mat, T)
S = Sy * C + Sx
G = Gy * C + Gx
print(A[S,G])
0