結果

問題 No.659 徘徊迷路
ユーザー rlangevinrlangevin
提出日時 2023-10-18 12:42:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,529 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 79,904 KB
最終ジャッジ日時 2024-09-18 09:00:24
合計ジャッジ時間 16,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,152 KB
testcase_01 AC 434 ms
76,772 KB
testcase_02 AC 56 ms
67,976 KB
testcase_03 AC 44 ms
60,124 KB
testcase_04 AC 385 ms
75,768 KB
testcase_05 AC 81 ms
76,456 KB
testcase_06 AC 80 ms
75,600 KB
testcase_07 AC 60 ms
69,632 KB
testcase_08 AC 671 ms
77,520 KB
testcase_09 AC 1,573 ms
79,372 KB
testcase_10 AC 1,808 ms
79,592 KB
testcase_11 TLE -
testcase_12 AC 347 ms
76,088 KB
testcase_13 AC 1,561 ms
78,592 KB
testcase_14 AC 1,580 ms
79,140 KB
testcase_15 TLE -
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def Matprod(A, B, N):
    temp = [0] * N*N
    for i in range(N):
        for j in range(N):
            ij = i * N + j
            for k in range(N):
                temp[ij] += A[i*N+k] * B[k*N+j]
    return temp

def Matpow_Linear(A, M, N):
    Mat = [0] * N*N
    for i in range(N):
        Mat[i*N+i] = 1
         
    while M:
        if M & 1:
            Mat = Matprod(Mat, A, N)
        A = Matprod(A, A, N)
        M >>= 1
    return Mat  

def main():
    H, W, T = map(int, input().split())
    sx, sy = map(int, input().split())
    gx, gy = map(int, input().split())
    N = H * W
    M = [0] * N * N
    B = []
    for i in range(H):
        B.extend(list(input().rstrip()))

    dx = [-1, 0, 1, 0]
    dy = [0, -1, 0, 1]

    def f(h, w):
        return h * W + w

    for i in range(H):
        for j in range(W):
            v = f(i,j)
            if B[v] == "#":
                continue
            cnt = 0
            for k in range(4):
                x = i + dx[k]
                y = j + dy[k]
                if B[f(x,y)] == "#":
                    continue
                cnt += 1
            if cnt == 0:
                M[v * N + v] = 1
            else:
                for k in range(4):
                    x = i + dx[k]
                    y = j + dy[k]
                    if B[f(x,y)] == "#":
                        continue
                    M[f(x,y) * N + v] += 1 / cnt

    M = Matpow_Linear(M, T, N)
    print(M[f(gx, gy) * N + f(sx, sy)])

main()
0