結果

問題 No.1706 Many Bus Stops (hard)
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-08 23:04:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,662 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 63,028 KB
最終ジャッジ日時 2024-07-23 06:30:19
合計ジャッジ時間 3,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,728 KB
testcase_01 AC 40 ms
53,364 KB
testcase_02 AC 47 ms
61,968 KB
testcase_03 AC 47 ms
61,588 KB
testcase_04 AC 46 ms
60,624 KB
testcase_05 AC 46 ms
61,764 KB
testcase_06 AC 47 ms
61,768 KB
testcase_07 AC 47 ms
62,028 KB
testcase_08 AC 47 ms
61,668 KB
testcase_09 AC 46 ms
61,116 KB
testcase_10 AC 47 ms
61,344 KB
testcase_11 AC 47 ms
61,304 KB
testcase_12 AC 47 ms
60,688 KB
testcase_13 AC 47 ms
61,604 KB
testcase_14 AC 47 ms
62,652 KB
testcase_15 AC 47 ms
61,480 KB
testcase_16 AC 46 ms
62,180 KB
testcase_17 AC 46 ms
62,332 KB
testcase_18 AC 47 ms
61,380 KB
testcase_19 AC 47 ms
62,560 KB
testcase_20 AC 47 ms
61,128 KB
testcase_21 AC 48 ms
61,696 KB
testcase_22 AC 47 ms
61,368 KB
testcase_23 AC 47 ms
61,408 KB
testcase_24 AC 47 ms
62,384 KB
testcase_25 AC 49 ms
61,836 KB
testcase_26 AC 47 ms
62,376 KB
testcase_27 AC 46 ms
62,204 KB
testcase_28 AC 46 ms
61,012 KB
testcase_29 AC 47 ms
60,868 KB
testcase_30 AC 47 ms
62,244 KB
testcase_31 AC 47 ms
61,172 KB
testcase_32 AC 48 ms
62,252 KB
testcase_33 AC 48 ms
62,744 KB
testcase_34 AC 47 ms
61,696 KB
testcase_35 AC 47 ms
62,072 KB
testcase_36 AC 47 ms
62,516 KB
testcase_37 AC 47 ms
62,244 KB
testcase_38 AC 48 ms
61,020 KB
testcase_39 AC 49 ms
63,028 KB
testcase_40 AC 48 ms
60,896 KB
testcase_41 AC 48 ms
61,412 KB
testcase_42 AC 47 ms
61,460 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

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

#バス停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)

notone = 1 - ansM[0][0]

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