結果

問題 No.801 エレベーター
ユーザー stngstng
提出日時 2022-07-03 20:10:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,249 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 157,696 KB
最終ジャッジ日時 2024-11-29 16:46:17
合計ジャッジ時間 79,741 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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