結果
問題 | No.2780 The Bottle Imp |
ユーザー | ああいい |
提出日時 | 2024-06-12 11:27:25 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,521 bytes |
コンパイル時間 | 368 ms |
コンパイル使用メモリ | 82,112 KB |
実行使用メモリ | 84,320 KB |
最終ジャッジ日時 | 2024-06-12 11:27:30 |
合計ジャッジ時間 | 5,587 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 39 ms
53,028 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
ソースコード
#強連結成分分解 #分解したら、sG を 頂点数num のグラフとして普通に扱えばいい #sG は set で作ってある #Componentに各成分を構成するもとの頂点を入れてる class SCC(): #index :0-index or 1-index #逆グラフは自動で作る def __init__(self,G,index = 1): self.G = G self.N = len(G) self.index = index self.rG = self.make_reverse() self.parent = [0] * self.N #各頂点の属する強連結成分の番号 self.num = 0 #強連結成分の数 self.build() self.sG,self.top,self.Component = self.make_sG() #sG 縮約後のグラフ。setでつくってある #top sGをトポロジカルソートしたもの #Component 各強連結成分に属する頂点をまとめた配列 #逆グラフを作る def make_reverse(self): G = self.G rG = [[] for _ in range(self.N)] for v in range(self.index,self.N): for u in G[v]: rG[u].append(v) return rG def build(self): G = self.G rG = self.rG parent = self.parent order = [] memo = [0] * self.N stack = [] label = 0 for v in range(self.index,self.N): if memo[v] == 1:continue stack.append((v,0)) memo[v] = 1 while stack: now,i = stack.pop() while i < len(G[now]): u = G[now][i] if memo[u] == 0: memo[u] = 1 stack.append((now,i+1)) stack.append((u,0)) break i += 1 if i == len(G[now]): order.append(now) memo = [0] * self.N for v in reversed(order): if memo[v] == 1:continue stack.append(v) memo[v] = 1 parent[v] = label while stack: now = stack.pop() for u in rG[now]: if memo[u] == 1: continue memo[u] = 1 stack.append(u) parent[u] = label label += 1 self.num = label #縮約後のグラフを作る #トポロジカルソートもする def make_sG(self): sG = [set() for _ in range(self.num)] sGnum = [0] * self.num Component = [[] for _ in range(self.num)] G = self.G parent = self.parent for v in range(self.index,self.N): pv = parent[v] Component[pv].append(v) for u in G[v]: pu = parent[u] if pu == pv:continue if pu not in sG[pv]: sG[pv].add(pu) sGnum[pu] += 1 top = [] stack = [] for i in range(self.num): if sGnum[i] == 0: stack.append(i) while stack: now = stack.pop() top.append(now) for v in sG[now]: sGnum[v] -= 1 if sGnum[v] == 0: stack.append(v) return sG,top,Component N = int(input()) G = [[] for _ in range(N)] for _ in range(N): m,*A = list(map(int,input().split())) for a in A: G[_],append(a - 1) scc = SCC(G,0) print('Yes') if scc.num == 1 else ('No')