結果

問題 No.801 エレベーター
ユーザー stngstng
提出日時 2022-07-03 19:55:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,365 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 88,728 KB
最終ジャッジ日時 2024-05-07 03:41:19
合計ジャッジ時間 3,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
61,580 KB
testcase_01 AC 36 ms
52,792 KB
testcase_02 WA -
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):
    ki = Bit(n+1)
    for j in range(m):
        l,r = lr[j]
        if l <= i <= r:
            #print(i,j,2)
            ki.add(l,1)
            ki.add(r+1,-1)
    for j in range(1,n+1):
        st[i-1][j-1] = ki.tree[j]
#print(st)
#print(ki)
#exit()
A = mat_pow(st,k)

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