結果

問題 No.2290 UnUnion Find
ユーザー titiatitia
提出日時 2023-05-05 21:54:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,243 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 57,856 KB
最終ジャッジ日時 2024-05-02 16:07:10
合計ジャッジ時間 51,958 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 638 ms
37,504 KB
testcase_03 AC 929 ms
51,584 KB
testcase_04 AC 975 ms
52,224 KB
testcase_05 AC 968 ms
52,480 KB
testcase_06 AC 976 ms
51,456 KB
testcase_07 AC 977 ms
52,352 KB
testcase_08 AC 976 ms
52,352 KB
testcase_09 AC 963 ms
52,224 KB
testcase_10 AC 964 ms
52,352 KB
testcase_11 AC 973 ms
52,224 KB
testcase_12 AC 970 ms
52,352 KB
testcase_13 AC 961 ms
52,352 KB
testcase_14 AC 970 ms
52,224 KB
testcase_15 AC 965 ms
51,584 KB
testcase_16 AC 968 ms
51,456 KB
testcase_17 AC 972 ms
52,224 KB
testcase_18 AC 963 ms
52,224 KB
testcase_19 AC 1,091 ms
52,864 KB
testcase_20 AC 1,233 ms
57,856 KB
testcase_21 AC 707 ms
44,416 KB
testcase_22 AC 909 ms
47,872 KB
testcase_23 AC 913 ms
48,000 KB
testcase_24 AC 1,146 ms
55,040 KB
testcase_25 AC 849 ms
46,848 KB
testcase_26 AC 1,178 ms
56,448 KB
testcase_27 AC 1,223 ms
55,552 KB
testcase_28 AC 1,033 ms
50,688 KB
testcase_29 AC 1,174 ms
54,400 KB
testcase_30 AC 737 ms
44,928 KB
testcase_31 AC 1,177 ms
53,376 KB
testcase_32 AC 859 ms
47,104 KB
testcase_33 AC 1,013 ms
50,688 KB
testcase_34 AC 1,236 ms
57,856 KB
testcase_35 AC 1,243 ms
56,320 KB
testcase_36 AC 856 ms
47,232 KB
testcase_37 AC 977 ms
49,664 KB
testcase_38 AC 884 ms
46,976 KB
testcase_39 AC 915 ms
48,256 KB
testcase_40 AC 1,243 ms
55,680 KB
testcase_41 AC 849 ms
46,592 KB
testcase_42 AC 1,099 ms
52,480 KB
testcase_43 AC 1,064 ms
52,096 KB
testcase_44 AC 966 ms
52,224 KB
testcase_45 AC 992 ms
51,456 KB
testcase_46 AC 999 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())
# UnionFind

Group = [i for i in range(N+1)] # グループ分け
Nodes = [1]*(N+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

QS=[list(map(int,input().split())) for i in range(Q)]
last=10**7
for i in range(Q):
    if len(QS[i])==2:
        continue
    com,u,v=QS[i]

    if com==1:
        if find(u)!=find(v):
            if Nodes[find(u)]+Nodes[find(v)]==N:
                last=i
                break
            else:
                Union(u,v)

ANS=[-1]*(N+1)

for i in range(N+1):
    if find(i)!=find(1):
        no_one=i

for i in range(N+1):
    if find(i)==find(1):
        ANS[i]=no_one
    else:
        ANS[i]=1

for i in range(Q):
    if len(QS[i])==3:
        continue
    com,u=QS[i]

    if com==2:
        if i>=last:
            print(-1)
        else:
            print(ANS[u])
0