結果
問題 | No.1420 国勢調査 (Easy) |
ユーザー | convexineq |
提出日時 | 2021-06-20 03:34:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,998 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 83,840 KB |
最終ジャッジ日時 | 2024-06-22 22:25:35 |
合計ジャッジ時間 | 9,295 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,224 KB |
testcase_01 | AC | 36 ms
52,096 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 139 ms
76,928 KB |
testcase_08 | AC | 174 ms
76,928 KB |
testcase_09 | AC | 151 ms
77,824 KB |
testcase_10 | AC | 178 ms
77,056 KB |
testcase_11 | AC | 131 ms
77,696 KB |
testcase_12 | AC | 71 ms
75,264 KB |
testcase_13 | WA | - |
testcase_14 | AC | 92 ms
77,836 KB |
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 | AC | 149 ms
78,080 KB |
testcase_28 | AC | 151 ms
77,952 KB |
testcase_29 | AC | 120 ms
77,824 KB |
testcase_30 | AC | 154 ms
78,464 KB |
testcase_31 | AC | 145 ms
78,336 KB |
ソースコード
class PotentialUnionFind_general: def __init__(self, n, add, inv, e_M): self.parent = [-1]*n #親ノード or size self.wt = [0]*n #親ノードを基準としたポテンシャル self.add = add #足し算 self.inv = inv #逆元 self.e_M = e_M #単位元 def root(self, x): #root(x): xの根ノードを返す. while self.parent[x] >= 0: x = self.parent[x] return x def weight(self, x): # p(x) - p(root) c = self.e_M while self.parent[x] >= 0: c = self.add(self.wt[x], c) x = self.parent[x] return c def merge(self, x, y, dxy): #ポテンシャル差p(y)-p(x)=dxyでxとyの組をまとめる dxy = self.add(self.add(self.weight(x),dxy), inv(self.weight(y))) #dxyを置き換え x,y = self.root(x), self.root(y) if x == y: return False if self.parent[x] > self.parent[y]: #rxの要素数が大きいように x,y,dxy = y,x,inv(dxy) self.parent[x] += self.parent[y] #xの要素数を更新 self.parent[y] = x #ryをrxにつなぐ self.wt[y] = dxy #ryの相対ポテンシャルを更新 return True def issame(self, x, y): #same(x,y): xとyが同じ組ならTrue return self.root(x) == self.root(y) def diff(self,x,y): #diff(x,y): xを基準としたyのポテンシャルを返す return add(inv(self.weight(x)), self.weight(y)) def size(self,x): #size(x): xのいるグループの要素数を返す return self.gsize[self.root(x)] import sys readline = sys.stdin.readline n,m = map(int,readline().split()) add = lambda x,y: x^y inv = lambda x: x UF = PotentialUnionFind_general(n+1,add,inv,0) for _ in range(m): l,r = map(int,readline().split()) y = int(readline()) if UF.issame(l,r): if UF.diff(l,r) != y: print(-1) exit() else: UF.merge(l,r,y) print(*UF.wt[1:], sep="\n")