結果

問題 No.399 動的な領主
ユーザー sjikisjiki
提出日時 2024-05-04 21:35:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,712 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 277,076 KB
最終ジャッジ日時 2024-11-26 11:56:12
合計ジャッジ時間 41,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,496 KB
testcase_01 AC 44 ms
150,400 KB
testcase_02 AC 57 ms
69,248 KB
testcase_03 AC 56 ms
241,292 KB
testcase_04 AC 120 ms
81,408 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 146 ms
82,304 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

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