結果

問題 No.2290 UnUnion Find
ユーザー ああいいああいい
提出日時 2023-05-06 15:35:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 800 ms / 2,000 ms
コード長 1,148 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 164,224 KB
最終ジャッジ日時 2024-05-03 02:42:57
合計ジャッジ時間 34,792 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 499 ms
75,776 KB
testcase_03 AC 394 ms
87,296 KB
testcase_04 AC 553 ms
130,216 KB
testcase_05 AC 535 ms
130,432 KB
testcase_06 AC 580 ms
155,308 KB
testcase_07 AC 553 ms
117,288 KB
testcase_08 AC 576 ms
146,092 KB
testcase_09 AC 517 ms
97,280 KB
testcase_10 AC 517 ms
120,228 KB
testcase_11 AC 579 ms
148,652 KB
testcase_12 AC 515 ms
122,800 KB
testcase_13 AC 529 ms
124,320 KB
testcase_14 AC 582 ms
132,608 KB
testcase_15 AC 585 ms
150,308 KB
testcase_16 AC 516 ms
123,176 KB
testcase_17 AC 583 ms
164,224 KB
testcase_18 AC 586 ms
141,604 KB
testcase_19 AC 761 ms
93,824 KB
testcase_20 AC 677 ms
93,692 KB
testcase_21 AC 752 ms
80,004 KB
testcase_22 AC 796 ms
86,144 KB
testcase_23 AC 717 ms
85,376 KB
testcase_24 AC 721 ms
92,928 KB
testcase_25 AC 742 ms
82,944 KB
testcase_26 AC 696 ms
93,312 KB
testcase_27 AC 758 ms
93,312 KB
testcase_28 AC 721 ms
88,960 KB
testcase_29 AC 718 ms
93,156 KB
testcase_30 AC 686 ms
79,744 KB
testcase_31 AC 749 ms
92,672 KB
testcase_32 AC 758 ms
82,944 KB
testcase_33 AC 762 ms
90,624 KB
testcase_34 AC 677 ms
93,696 KB
testcase_35 AC 693 ms
93,568 KB
testcase_36 AC 732 ms
83,936 KB
testcase_37 AC 743 ms
88,320 KB
testcase_38 AC 800 ms
83,968 KB
testcase_39 AC 713 ms
85,916 KB
testcase_40 AC 720 ms
93,824 KB
testcase_41 AC 742 ms
82,560 KB
testcase_42 AC 742 ms
91,776 KB
testcase_43 AC 777 ms
92,080 KB
testcase_44 AC 567 ms
146,596 KB
testcase_45 AC 429 ms
89,600 KB
testcase_46 AC 516 ms
92,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

parent = list(range(N))

import sys
sys.setrecursionlimit(10 ** 8)
s = set()
q = list(range(N))


def find(i):
    if parent[i] == i:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False

    s.add(I)
    parent[i] = J
    parent[I] = J
    return True

for _ in range(Q):
    l = list(map(int,input().split()))
    if l[0] == 1:
        u,v = l[1],l[2]
        u -= 1
        v -= 1
        unite(u,v)
    else:
        u = l[1]
        u -= 1
        if len(s) == N - 1:
            print(-1)
        else:
            a = -1
            b = -1
            while q:
                a = q.pop()
                if a in s:continue
                else:break
            while q:
                b = q.pop()
                if b in s:continue
                else:break
            if a >= 0 and b >= 0:
                U = find(u)
                if U == a:print(b + 1)
                else:
                    print(a + 1)
                q.append(a)
                q.append(b)
            else:
                pass
            
0