結果

問題 No.1420 国勢調査 (Easy)
ユーザー logxlogx
提出日時 2021-01-29 23:15:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 981 ms / 2,000 ms
コード長 1,018 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-06-27 09:43:51
合計ジャッジ時間 21,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,008 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 741 ms
11,392 KB
testcase_03 AC 726 ms
11,392 KB
testcase_04 AC 732 ms
11,392 KB
testcase_05 AC 723 ms
11,392 KB
testcase_06 AC 734 ms
11,520 KB
testcase_07 AC 707 ms
11,264 KB
testcase_08 AC 717 ms
11,264 KB
testcase_09 AC 708 ms
11,264 KB
testcase_10 AC 763 ms
11,392 KB
testcase_11 AC 709 ms
11,264 KB
testcase_12 AC 97 ms
13,056 KB
testcase_13 AC 234 ms
13,312 KB
testcase_14 AC 100 ms
13,056 KB
testcase_15 AC 235 ms
13,184 KB
testcase_16 AC 233 ms
13,184 KB
testcase_17 AC 236 ms
13,184 KB
testcase_18 AC 236 ms
13,184 KB
testcase_19 AC 234 ms
13,184 KB
testcase_20 AC 232 ms
13,184 KB
testcase_21 AC 231 ms
13,184 KB
testcase_22 AC 981 ms
15,872 KB
testcase_23 AC 981 ms
15,744 KB
testcase_24 AC 979 ms
15,744 KB
testcase_25 AC 975 ms
15,872 KB
testcase_26 AC 970 ms
15,744 KB
testcase_27 AC 803 ms
15,872 KB
testcase_28 AC 778 ms
15,744 KB
testcase_29 AC 780 ms
15,744 KB
testcase_30 AC 779 ms
15,744 KB
testcase_31 AC 805 ms
15,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())

par=[-1] * n
diff=[0] * n
def find(x):
        if par[x]<0:
                return x
        r=find(par[x])
        diff[x]^=diff[par[x]]
        par[x]=r
        return r
def weight(x):
        find(x)
        return diff[x]
def diff_query(x,y):
        return weight(x)^weight(y)
def same(x,y):
        return find(x)==find(y)
def unite(x,y,w):
        if(same(x,y)):
                if diff_query(x,y)!=w:
                        return False
                else:
                        return True
        w=(w^weight(x))^weight(y)
        x=find(x)
        y=find(y)
        if par[x]>par[y]:
                x,y = y,x
        t=par[x]+par[y]
        par[x]=t
        par[y]=x
        diff[y]=w
        return True


ok=True
for _ in range(m):
        a,b=map(int,input().split())
        y=int(input())
        if unite(a-1,b-1,y)==False:
                ok=False
if ok==False:
        print(-1)
        exit(0)

for i in range(n):
        r=find(i)
        print(diff_query(i,r))
0