結果

問題 No.801 エレベーター
ユーザー stngstng
提出日時 2022-07-03 20:10:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,249 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 90,232 KB
最終ジャッジ日時 2024-05-07 04:02:10
合計ジャッジ時間 4,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,832 KB
testcase_01 AC 39 ms
53,708 KB
testcase_02 AC 46 ms
60,548 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 行列の乗算(mod)
def mat_mul(a, b):
    I, K, J = len(a), len(b), len(b[0])
    c = [[0 for j in range(J)] for i in range(I)]
    for i in range(I):
        for k in range(K):
            for j in range(J):
                c[i][j] += a[i][k] * b[k][j]
                c[i][j] %= mod
    return c

# 行列の累乗(mod)
def mat_pow(a, n):
    b = [[0 for j in range(len(a))] for i in range(len(a))]
    for i in range(len(a)):
        b[i][i] = 1
    while n > 0:
        if n & 1:
            b = mat_mul(b, a)
        a = mat_mul(a, a)
        n >>= 1
    return b

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)
 
    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
 
    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

mod = 10**9+7
n,m,k = map(int,input().split())

st = [[0]*n for i in range(n)]

lr = [[int(i) for i in input().split()] for j in range(m)]

for i in range(1,n+1):
    for j in range(m):
        l,r = lr[j]
        if l <= i <= r:
            for o in range(l,r+1):
                st[i-1][o-1] += 1

A = mat_pow(st,k)

print(A[0][n-1]%mod)
0