結果
問題 | No.1640 簡単な色塗り |
ユーザー | kept1994 |
提出日時 | 2021-09-08 02:57:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 5,818 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,392 KB |
実行使用メモリ | 125,060 KB |
最終ジャッジ日時 | 2024-06-29 17:11:55 |
合計ジャッジ時間 | 17,695 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
54,804 KB |
testcase_01 | AC | 38 ms
55,064 KB |
testcase_02 | WA | - |
testcase_03 | AC | 40 ms
55,404 KB |
testcase_04 | AC | 208 ms
125,060 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 37 ms
56,060 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 155 ms
80,080 KB |
testcase_31 | AC | 343 ms
98,596 KB |
testcase_32 | AC | 300 ms
97,056 KB |
testcase_33 | AC | 255 ms
90,468 KB |
testcase_34 | AC | 282 ms
94,628 KB |
testcase_35 | AC | 256 ms
90,504 KB |
testcase_36 | AC | 155 ms
80,608 KB |
testcase_37 | AC | 165 ms
81,084 KB |
testcase_38 | AC | 304 ms
97,448 KB |
testcase_39 | AC | 210 ms
85,552 KB |
testcase_40 | AC | 208 ms
84,992 KB |
testcase_41 | AC | 262 ms
93,544 KB |
testcase_42 | AC | 216 ms
86,272 KB |
testcase_43 | AC | 222 ms
88,212 KB |
testcase_44 | AC | 216 ms
87,692 KB |
testcase_45 | AC | 201 ms
85,364 KB |
testcase_46 | AC | 151 ms
80,256 KB |
testcase_47 | AC | 135 ms
79,216 KB |
testcase_48 | AC | 326 ms
98,932 KB |
testcase_49 | AC | 119 ms
78,096 KB |
testcase_50 | AC | 38 ms
55,632 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
07_evil_01.txt | WA | - |
07_evil_02.txt | WA | - |
ソースコード
#!/usr/bin/env python3 import sys from collections import defaultdict from collections import deque class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n """ 要素xの値を取得。""" def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] """ 2つの要素の併合。""" def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x return """ 要素xの属する集合の要素数を取得。""" def size(self, x): return -self.parents[self.find(x)] """ 2つの要素が同一の集合に属するか。""" def same(self, x, y): return self.find(x) == self.find(y) """ 要素xと同一の集合の要素を全取得。 計算量 : O(N) """ def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] """ 各集合の根を全取得。 計算量 : O(N) """ def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] """ 集合の個数を取得。 計算量 : O(N) """ def group_count(self): return len(self.roots()) """ 全集合の要素一覧を取得。 計算量 : O(N) """ def all_group_members(self): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members def __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) def main(): N = int(input()) uf = UnionFind(N) G = [[] for _ in range(N)] for nn in range(N): a, b = map(lambda i: int(i) - 1, input().split()) G[a].append((b, nn)) # 答えは順番に出力するので保持しておく必要がある。 if a != b: G[b].append((a, nn)) uf.union(a, b) groups = uf.all_group_members() for _, linked in groups.items(): link_num = 0 for i in linked: link_num = len(G[i]) if link_num != len(linked): print("No") return uu = UnionFind(N) ans = [-1] * N L=[0]*(N+1) T=[0]*N # print(G) # print(groups) for root in uf.roots(): flag = False for linked in groups[root]: for b, k in G[linked]: # print(b, k) if T[k]==0: T[k]=1 if uu.same(linked,b): alpha=linked beta =b flag=True K=k break else: uu.union(linked,b) if flag: break ans[K]=alpha Q=deque([alpha]); L[alpha]=1 while Q: x=Q.popleft() for y,k in G[x]: if L[y]==0: if k==K: continue L[y]=1 Q.append(y) ans[k]=y print("Yes") for i in ans: print(i + 1) # print(ans) return if True: is_cycle=True root=-1 cycle_cnt=0 print(linked) for point in linked: for link_node, num in G[point]: if link_node == point: # 始点と終点が同じなので自己ループ cycle_cnt += 1 is_cycle = False ans[num] = point + 1 root = point if cycle_cnt > 1: print("No") return if is_cycle: next_point=-1 que=deque() que.append([linked[0],-1]) print(is_cycle) print(ans) print(root) sys.setrecursionlimit(10 ** 9) # seen = [False] * N firstOrder = [] lastOrder = [] def dfs(nodes: "list[list[int]]", now: int): firstOrder.append(now) seen[now] = 1 for next, _ in nodes[now]: if seen[next]: continue dfs(nodes, next) lastOrder.append(now) # while que: # q=que.pop() # for j in G[q[0]]: # if j[1]==q[1]: # continue # if seen[j[0]]: # root=j[0] # next_point=q[0] # ans[j[1]]=root+1 # que.clear() # break # que.append([j[0],j[1]]) # seen[q[0]]=1 dfs(G, linked[0]) print(firstOrder) print(lastOrder) print(seen) if next_point==-1: print("No") return dq=deque() dq.append(root) while dq: q=dq.pop() for j in G[q]: if ans[j[1]]==-1: ans[j[1]]=j[0]+1 dq.append(j[0]) for i in ans: if i==-1: print("No") return print("Yes") for i in ans: print(i) return # E = 0 # for i in nodes: # E = len(G[i]) # if E != len(nodes): # print("No") # return # ans = 0 # print(ans) return if __name__ == '__main__': main()