結果

問題 No.1704 Many Bus Stops (easy)
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-08 23:08:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 1,912 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 79,316 KB
最終ジャッジ日時 2024-07-23 06:41:27
合計ジャッジ時間 14,860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
63,704 KB
testcase_01 AC 404 ms
77,536 KB
testcase_02 AC 222 ms
77,188 KB
testcase_03 AC 220 ms
77,184 KB
testcase_04 AC 217 ms
77,684 KB
testcase_05 AC 221 ms
77,336 KB
testcase_06 AC 224 ms
77,328 KB
testcase_07 AC 221 ms
77,424 KB
testcase_08 AC 219 ms
77,440 KB
testcase_09 AC 218 ms
77,560 KB
testcase_10 AC 218 ms
77,348 KB
testcase_11 AC 223 ms
77,444 KB
testcase_12 AC 218 ms
77,680 KB
testcase_13 AC 220 ms
77,736 KB
testcase_14 AC 230 ms
77,596 KB
testcase_15 AC 222 ms
77,680 KB
testcase_16 AC 222 ms
77,568 KB
testcase_17 AC 225 ms
77,448 KB
testcase_18 AC 221 ms
77,716 KB
testcase_19 AC 219 ms
77,576 KB
testcase_20 AC 217 ms
77,236 KB
testcase_21 AC 222 ms
77,476 KB
testcase_22 AC 404 ms
77,892 KB
testcase_23 AC 416 ms
78,784 KB
testcase_24 AC 415 ms
78,688 KB
testcase_25 AC 412 ms
79,052 KB
testcase_26 AC 413 ms
77,624 KB
testcase_27 AC 418 ms
79,056 KB
testcase_28 AC 408 ms
78,016 KB
testcase_29 AC 411 ms
78,648 KB
testcase_30 AC 414 ms
77,768 KB
testcase_31 AC 411 ms
78,660 KB
testcase_32 AC 412 ms
77,496 KB
testcase_33 AC 419 ms
78,696 KB
testcase_34 AC 413 ms
77,504 KB
testcase_35 AC 416 ms
78,580 KB
testcase_36 AC 411 ms
78,784 KB
testcase_37 AC 415 ms
79,316 KB
testcase_38 AC 416 ms
78,704 KB
testcase_39 AC 414 ms
79,036 KB
testcase_40 AC 413 ms
79,040 KB
testcase_41 AC 410 ms
77,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

1704&1706

行列べき乗はそれはそう。

バス停1
1 -> ?
? -> 1
? -> ?
バス停?

の5通りしか存在しないと考えてよい。

あとは、1台がいる確率をそれぞれ求めて
一台もいない確率を計算すればおk

"""
from sys import stdin
import sys

mod = 10**9+7

def inverse(x,mod):
    return pow(x,mod-2,mod)

def matrix_mul(A,B,mod):
 
    ans = [ [0] * len(B[0]) for i in range(len(A)) ]
 
    for ai in range(len(A)):
 
        for bj in range(len(B[0])):
 
            now = 0
            for same in range(len(A[0])):
                now += A[ai][same] * B[same][bj]

            if mod > 0:
                ans[ai][bj] = now % mod
            else:
                ans[ai][bj] = now
 
    return ans
 
#行列Aのx乗(当然正方行列じゃないとだめ)
def matrix_pow(A,x,mod):
 
    B = [[A[i][j] for j in range(len(A[0]))] for i in range(len(A))]
    ans = [[0] * len(A[0]) for i in range(len(A))]
    for i in range(len(A)):
        ans[i][i] = 1
 
    while x > 0:
        if x % 2 == 1:
            ans = matrix_mul(ans,B,mod)
        B = matrix_mul(B,B,mod)
 
        x//=2
    return ans

mod = 10**9+7

TT = int(stdin.readline())

ANS = []
for loop in range(TT):

    #C,N,M = map(int,stdin.readline().split())
    C = 3
    N = int(stdin.readline())
    M = 3

    #バス停1
    #1 -> ?
    #? -> 1
    #? -> ?
    #バス停?

    CINV = inverse(C,mod)

    OA = [[1,0,0,0,0]]

    A = [ [CINV , (1-CINV) % mod ,  0  ,  0  ,  0 ],
          [0    ,  0     ,  0  ,  0  ,  1 ],
          [1    ,  0     ,  0  ,  0  ,  0],
          [0    ,  0     ,  0  ,  0  , 1],
          [0    ,  0     ,  CINV , (1-2*CINV) % mod , CINV]
          ]

    ansM = matrix_mul(OA,matrix_pow(A,N,mod),mod)

    ANS.append(str(ansM[0][0] % mod))

    #notone = 1 - ansM[0][0]

    #ans = 1 - pow(notone , M , mod)
    #print (ans % mod)

print ("\n".join(ANS))
0