結果

問題 No.399 動的な領主
ユーザー sjikisjiki
提出日時 2024-05-04 21:35:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,712 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 104,212 KB
最終ジャッジ日時 2024-05-04 21:35:14
合計ジャッジ時間 4,512 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,392 KB
testcase_01 AC 36 ms
53,632 KB
testcase_02 AC 48 ms
63,872 KB
testcase_03 AC 48 ms
63,360 KB
testcase_04 AC 100 ms
76,288 KB
testcase_05 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.read
from collections import defaultdict, deque

def main():
    data = input().split()
    index = 0
    n = int(data[index])
    index += 1
    
    tree = defaultdict(list)
    for _ in range(n - 1):
        u = int(data[index]) - 1
        v = int(data[index + 1]) - 1
        tree[u].append(v)
        tree[v].append(u)
        index += 2
    
    m = int(data[index])
    index += 1
    
    routes = []
    for _ in range(m):
        s = int(data[index]) - 1
        t = int(data[index + 1]) - 1
        routes.append((s, t))
        index += 2
    
    # 村を通過する行商人の数をカウントする
    village_count = [0] * n
    
    def bfs_count_passes(start, end):
        queue = deque([start])
        visited = [False] * n
        visited[start] = True
        parents = [-1] * n
        
        # BFS to find the path from start to end
        while queue:
            node = queue.popleft()
            if node == end:
                break
            for neighbor in tree[node]:
                if not visited[neighbor]:
                    visited[neighbor] = True
                    parents[neighbor] = node
                    queue.append(neighbor)
        
        # Backtrack to count the path
        node = end
        while node != -1:
            village_count[node] += 1
            node = parents[node]
    
    # 各ルートについてBFSを実行
    for s, t in routes:
        bfs_count_passes(s, t)
    
    # 税額の総計を計算
    total_tax = 0
    for i in range(n):
        if village_count[i] > 0:
            total_tax += sum(range(village_count[i] + 1))
    
    print(total_tax)

if __name__ == "__main__":
    main()
0