結果

問題 No.659 徘徊迷路
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-18 14:39:39
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,387 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 77,876 KB
最終ジャッジ日時 2024-11-23 13:21:09
合計ジャッジ時間 17,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
76,456 KB
testcase_01 AC 481 ms
77,448 KB
testcase_02 AC 74 ms
73,216 KB
testcase_03 AC 44 ms
60,672 KB
testcase_04 AC 678 ms
76,800 KB
testcase_05 AC 100 ms
76,416 KB
testcase_06 AC 99 ms
76,544 KB
testcase_07 AC 82 ms
76,524 KB
testcase_08 AC 753 ms
77,148 KB
testcase_09 AC 1,694 ms
77,628 KB
testcase_10 AC 1,935 ms
77,444 KB
testcase_11 TLE -
testcase_12 AC 406 ms
76,688 KB
testcase_13 AC 1,682 ms
77,420 KB
testcase_14 AC 1,685 ms
77,292 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

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)
0