結果
問題 | No.1293 2種類の道路 |
ユーザー | c-yan |
提出日時 | 2020-11-21 00:01:08 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,091 bytes |
コンパイル時間 | 770 ms |
コンパイル使用メモリ | 82,496 KB |
実行使用メモリ | 287,256 KB |
最終ジャッジ日時 | 2024-07-23 14:06:16 |
合計ジャッジ時間 | 4,621 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
59,876 KB |
testcase_01 | AC | 38 ms
52,816 KB |
testcase_02 | AC | 42 ms
52,932 KB |
testcase_03 | AC | 38 ms
52,392 KB |
testcase_04 | AC | 39 ms
54,332 KB |
testcase_05 | AC | 38 ms
53,408 KB |
testcase_06 | AC | 38 ms
53,504 KB |
testcase_07 | AC | 38 ms
52,324 KB |
testcase_08 | AC | 40 ms
53,712 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
from sys import setrecursionlimit, stdin def find(parent, i): t = parent[i] if t < 0: return i t = find(parent, t) parent[i] = t return t def unite(parent, i, j): i = find(parent, i) j = find(parent, j) if i == j: return parent[j] += parent[i] parent[i] = j readline = stdin.readline setrecursionlimit(10 ** 6) N, D, W = map(int, readline().split()) parent0 = [-1] * N for _ in range(D): a, b = map(lambda x: int(x) - 1, readline().split()) unite(parent0, a, b) parent1 = [-1] * N for _ in range(W): c, d = map(lambda x: int(x) - 1, readline().split()) unite(parent1, c, d) ss0 = {} xs = [i for i in range(N) if parent0[i] < 0] for x in xs: ss0[x] = set() for i in range(N): ss0[find(parent0, i)].add(i) ss1 = {} ys = [i for i in range(N) if parent1[i] < 0] for y in ys: ss1[y] = set() for i in range(N): ss1[find(parent1, i)].add(i) result = 0 for x in xs: t = ss0[x].copy() for z in ss0[x]: t |= ss1[find(parent1, z)] result += len(ss0[x]) * (len(t) - 1) print(result)