結果
問題 | No.416 旅行会社 |
ユーザー | mkawa2 |
提出日時 | 2020-04-21 12:37:04 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,956 bytes |
コンパイル時間 | 102 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 817,792 KB |
最終ジャッジ日時 | 2024-10-08 00:46:27 |
合計ジャッジ時間 | 6,569 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
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 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
from itertools import permutations import sys sys.setrecursionlimit(10 ** 6) from bisect import * from collections import * from heapq import * def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def SI(): return sys.stdin.readline()[:-1] def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] int1 = lambda x: int(x) - 1 def MI1(): return map(int1, sys.stdin.readline().split()) def LI1(): return list(map(int1, sys.stdin.readline().split())) p2D = lambda x: print(*x, sep="\n") dij = [(1, 0), (0, 1), (-1, 0), (0, -1)] class UnionFind: def __init__(self, n): self.state = [-1] * n self.member=[[i] for i in range(n)] def root(self, u): v = self.state[u] if v < 0: return u self.state[u] = res = self.root(v) return res def merge(self, u, v): res=[] ru = self.root(u) rv = self.root(v) if ru == rv: return res if ru > rv: ru, rv = rv, ru if ru==0:res=self.member[rv] else: self.member[ru]+=self.member[rv] self.member[rv]=[] self.state[rv] = ru return res def main(): # 橋を壊していくのではなく、クエリを逆順にして、橋をつないでいく n,m,q=MI() ab=LLI1(m) cd=LLI1(q) uf=UnionFind(n) # 破壊される橋をチェック des=[[False]*n for _ in range(n)] for c,d in cd:des[c][d]=des[d][c]=True # 破壊されない橋を結ぶ ans=[0]*n for a,b in ab: if des[a][b]:continue uu=uf.merge(a,b) for u in uu:ans[u]=-1 # クエリを逆から見て橋をつないでいく for i,(c,d) in enumerate(cd[::-1]): uu=uf.merge(c,d) for u in uu:ans[u]=q-i for i in range(1,n):print(ans[i]) main()