結果
問題 | No.386 貪欲な領主 |
ユーザー | EOS2122 |
提出日時 | 2016-07-17 20:43:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,280 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 37,540 KB |
最終ジャッジ日時 | 2024-10-15 15:26:05 |
合計ジャッジ時間 | 4,846 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
def data_setting(): N = int(input()) tree = [] tree_line = [list(map(int,input().split())) for i in range(N-1)] for i in range(N): tree_tmp = [] for j in range(len(tree_line)): if tree_line[j][0] == i: tree_tmp.append(tree_line[j][1]) elif tree_line[j][1] == i: tree_tmp.append(tree_line[j][0]) tree.append(tree_tmp) tax = [int(input()) for i in range(N)] M = int(input()) group = [list(map(int,input().split())) for i in range(M)] return M,tree,tax,group def disp(M,tree,tax,group): print(tree) print(tax) print(M) print(group) def route_cal(start): now = start route =[] while now != 0: route.append(now) now = min(tree[now]) route.append(0) print(route) return route def cal(M,tree,tax,group): ans = 0 for i in range(M): print("group",i) A = group[i][0] B = group[i][1] C = group[i][2] routeA = route_cal(A) routeB = route_cal(B) junction = [] for j in range(len(routeA)): if routeA[j] in routeB: junction.append(routeA[j]) P = max(junction) route = routeA[:routeA.index(P)+1] + routeB[:routeB.index(P)] pay_tax = 0 for k in range(len(route)): pay_tax += (tax[route[k]] * C) ans += pay_tax return ans M,tree,tax,group = data_setting() disp(M,tree,tax,group) ans = cal(M,tree,tax,group) print(ans)