結果
問題 | No.650 行列木クエリ |
ユーザー | skii |
提出日時 | 2018-02-28 12:34:39 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 861 bytes |
コンパイル時間 | 211 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 97,536 KB |
最終ジャッジ日時 | 2024-05-10 00:27:39 |
合計ジャッジ時間 | 3,104 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
52,096 KB |
testcase_01 | AC | 266 ms
82,188 KB |
testcase_02 | AC | 440 ms
96,736 KB |
testcase_03 | AC | 44 ms
52,224 KB |
testcase_04 | AC | 263 ms
81,524 KB |
testcase_05 | AC | 473 ms
97,352 KB |
testcase_06 | AC | 44 ms
52,352 KB |
testcase_07 | AC | 46 ms
52,224 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 42 ms
52,096 KB |
ソースコード
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)