結果

問題 No.650 行列木クエリ
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-02-28 12:50:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 903 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 183,456 KB
最終ジャッジ日時 2024-05-10 00:41:36
合計ジャッジ時間 7,819 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,472 KB
testcase_01 AC 246 ms
82,176 KB
testcase_02 AC 408 ms
96,640 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 242 ms
82,048 KB
testcase_05 AC 430 ms
97,664 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)
n = int(input())
graph = [[] for _ in range(n)]
for i in range(n-1):
    a, b = map(int, input().split())
    graph[a].append((i,b))
    graph[b].append((i,a))
parents = [0]*n
edges = [0]*(n-1)
def dfs(u, p):
    parents[u] = p
    for i, v in graph[u]:
        if v == p:
            continue
        edges[i] = v
        dfs(v, u)
dfs(0, 0)
def mul(x, y):
    a = (x[0]*y[0]+x[1]*y[2])%(10**9+7)
    b = (x[0]*y[1]+x[1]*y[3])%(10**9+7)
    c = (x[2]*y[0]+x[3]*y[2])%(10**9+7)
    d = (x[2]*y[1]+x[3]*y[3])%(10**9+7)
    return (a,b,c,d)
mats = [(1,0,0,1)]*n
for _ in range(int(input())):
    a = input().split()
    if a[0] == 'x':
        i, *x = map(int, a[1:])
        mats[edges[i]] = x
    else:
        i, j = map(int, a[1:])
        c = mats[j]
        while i != parents[j]:
            j = parents[j]
            c = mul(mats[j], c)
        print(*c)
0