結果

問題 No.2316 Freight Train
ユーザー titiatitia
提出日時 2023-05-26 22:05:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 980 ms / 2,000 ms
コード長 855 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 10,900 KB
実行使用メモリ 31,328 KB
最終ジャッジ日時 2023-08-26 11:39:56
合計ジャッジ時間 21,230 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,872 KB
testcase_01 AC 16 ms
7,784 KB
testcase_02 AC 16 ms
7,780 KB
testcase_03 AC 972 ms
30,260 KB
testcase_04 AC 462 ms
19,608 KB
testcase_05 AC 383 ms
19,504 KB
testcase_06 AC 91 ms
10,096 KB
testcase_07 AC 518 ms
14,288 KB
testcase_08 AC 692 ms
31,068 KB
testcase_09 AC 648 ms
23,072 KB
testcase_10 AC 608 ms
19,972 KB
testcase_11 AC 721 ms
29,236 KB
testcase_12 AC 798 ms
27,152 KB
testcase_13 AC 954 ms
31,224 KB
testcase_14 AC 961 ms
31,172 KB
testcase_15 AC 947 ms
31,192 KB
testcase_16 AC 949 ms
31,132 KB
testcase_17 AC 976 ms
31,328 KB
testcase_18 AC 942 ms
31,168 KB
testcase_19 AC 972 ms
31,316 KB
testcase_20 AC 967 ms
31,140 KB
testcase_21 AC 980 ms
31,300 KB
testcase_22 AC 967 ms
31,276 KB
testcase_23 AC 672 ms
31,296 KB
testcase_24 AC 710 ms
31,124 KB
testcase_25 AC 509 ms
24,320 KB
testcase_26 AC 442 ms
24,324 KB
testcase_27 AC 328 ms
8,248 KB
testcase_28 AC 16 ms
7,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())
P=list(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)

for i in range(N):
    if P[i]==-1:
        continue
    Union(i+1,P[i])

for tests in range(Q):
    a,b=map(int,input().split())

    if find(a)==find(b):
        print("Yes")
    else:
        print("No")
0