結果

問題 No.2316 Freight Train
ユーザー ニックネームニックネーム
提出日時 2023-05-26 21:26:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,776 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,680 KB
最終ジャッジ日時 2024-06-07 05:27:10
合計ジャッジ時間 38,997 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 1,686 ms
26,628 KB
testcase_04 AC 1,007 ms
19,504 KB
testcase_05 AC 663 ms
19,220 KB
testcase_06 AC 226 ms
11,776 KB
testcase_07 AC 1,369 ms
14,600 KB
testcase_08 AC 985 ms
28,628 KB
testcase_09 AC 1,325 ms
21,360 KB
testcase_10 AC 1,444 ms
18,920 KB
testcase_11 AC 1,215 ms
26,864 KB
testcase_12 AC 1,543 ms
24,476 KB
testcase_13 AC 1,728 ms
28,584 KB
testcase_14 AC 1,776 ms
28,680 KB
testcase_15 AC 1,776 ms
28,544 KB
testcase_16 AC 1,726 ms
28,552 KB
testcase_17 AC 1,692 ms
28,676 KB
testcase_18 AC 1,746 ms
28,680 KB
testcase_19 AC 1,705 ms
28,552 KB
testcase_20 AC 1,757 ms
28,544 KB
testcase_21 AC 1,732 ms
28,680 KB
testcase_22 AC 1,721 ms
28,556 KB
testcase_23 AC 1,532 ms
26,824 KB
testcase_24 AC 1,584 ms
26,952 KB
testcase_25 AC 1,531 ms
24,272 KB
testcase_26 AC 1,420 ms
24,320 KB
testcase_27 AC 1,264 ms
10,496 KB
testcase_28 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UF:
    def __init__(self,n):
        self.p = [-1]*n
    def f(self,x):
        if self.p[x]<0: return x
        else: self.p[x] = self.f(self.p[x]); return self.p[x]
    def u(self,x,y):
        x = self.f(x); y = self.f(y)
        if x==y: return
        if -self.p[x]<-self.p[y]: x,y = y,x
        self.p[x] += self.p[y]; self.p[y] = x
    def s(self,x,y): return self.f(x) == self.f(y)
n,q = map(int,input().split())
uf = UF(n)
for i,v in enumerate(map(int,input().split())):
    if v !=-1: uf.u(i,v-1)
for _ in range(q):
    a,b = map(int,input().split())
    print("Yes" if uf.s(a-1,b-1) else "No")
0