結果

問題 No.659 徘徊迷路
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-18 14:40:55
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,583 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,900 KB
最終ジャッジ日時 2024-05-02 19:23:01
合計ジャッジ時間 17,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
76,672 KB
testcase_01 AC 499 ms
77,456 KB
testcase_02 AC 88 ms
73,728 KB
testcase_03 AC 53 ms
60,416 KB
testcase_04 AC 701 ms
77,068 KB
testcase_05 AC 114 ms
76,416 KB
testcase_06 AC 112 ms
76,672 KB
testcase_07 AC 97 ms
76,288 KB
testcase_08 AC 770 ms
77,120 KB
testcase_09 AC 1,715 ms
77,768 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 423 ms
76,680 KB
testcase_13 AC 1,713 ms
77,900 KB
testcase_14 AC 1,706 ms
77,384 KB
testcase_15 TLE -
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# A*B
def mat_mul(A, B):
    C = [[0]*len(B[0]) for i in range(len(A))]
    for i in range(len(A)):
        for k in range(len(B)):
            for j in range(len(B[0])):
                C[i][j] = (C[i][j] + A[i][k]*B[k][j])
    return C

#A**n
def mat_pow(A, n):
    B = [[0]*len(A) for i in range(len(A))]
    for i in range(len(A)):
        B[i][i] = 1
    while n > 0:
        if n & 1 == 1:
            B = mat_mul(A, B)
        A = mat_mul(A, A)
        n = n>>1
    return B

import sys
import io, os
input = sys.stdin.readline

def main():

    r, c, t = map(int, input().split())
    sy, sx = map(int, input().split())
    gy, gx = map(int, input().split())

    B = []
    for i in range(r):
        temp = str(input().rstrip())
        B.append(temp)
    B = ''.join(B)

    A = [[0]*(r*c) for i in range(r*c)]
    for y in range(r):
        for x in range(c):
            v = y*c+x
            if B[v] == '#':
                continue
            p = 0
            cand = []
            for dy, dx in (-1, 0), (1, 0), (0, 1), (0, -1):
                ny, nx = y+dy, x+dx
                nv = ny*c+nx
                if 0 <= ny < r and 0 <= nx < c and B[nv] != '#':
                    p += 1
                    cand.append(nv)
            if p == 0:
                A[v][v] = 1
                continue
            for nv in cand:
                A[nv][v] += 1/p

    sv = sy*c+sx
    gv = gy*c+gx
    X = [0]*(r*c)
    X[sv] = 1
    A = mat_pow(A, t)
    ans = 0
    for v in range(v):
        ans += A[gv][v]*X[v]
    print(ans)

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