結果

問題 No.1983 [Cherry 4th Tune C] 南の島のマーメイド
ユーザー tktk_snsntktk_snsn
提出日時 2022-06-17 22:49:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 716 ms / 4,000 ms
コード長 2,019 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 182,272 KB
最終ジャッジ日時 2024-10-09 09:10:05
合計ジャッジ時間 17,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 37 ms
52,736 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 39 ms
52,596 KB
testcase_07 AC 37 ms
52,608 KB
testcase_08 AC 155 ms
78,384 KB
testcase_09 AC 150 ms
79,960 KB
testcase_10 AC 125 ms
79,952 KB
testcase_11 AC 145 ms
79,872 KB
testcase_12 AC 167 ms
79,232 KB
testcase_13 AC 426 ms
107,008 KB
testcase_14 AC 435 ms
115,272 KB
testcase_15 AC 502 ms
122,752 KB
testcase_16 AC 322 ms
137,224 KB
testcase_17 AC 468 ms
120,576 KB
testcase_18 AC 511 ms
124,800 KB
testcase_19 AC 600 ms
130,672 KB
testcase_20 AC 502 ms
119,040 KB
testcase_21 AC 495 ms
119,936 KB
testcase_22 AC 514 ms
126,960 KB
testcase_23 AC 651 ms
134,448 KB
testcase_24 AC 682 ms
134,740 KB
testcase_25 AC 665 ms
134,340 KB
testcase_26 AC 632 ms
134,764 KB
testcase_27 AC 691 ms
134,876 KB
testcase_28 AC 702 ms
134,640 KB
testcase_29 AC 676 ms
134,664 KB
testcase_30 AC 716 ms
134,556 KB
testcase_31 AC 701 ms
134,724 KB
testcase_32 AC 683 ms
134,412 KB
testcase_33 AC 38 ms
52,608 KB
testcase_34 AC 236 ms
161,664 KB
testcase_35 AC 319 ms
173,852 KB
testcase_36 AC 335 ms
182,272 KB
testcase_37 AC 38 ms
52,224 KB
testcase_38 AC 155 ms
76,672 KB
testcase_39 AC 393 ms
121,216 KB
testcase_40 AC 362 ms
118,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


class UnionFind:
    def __init__(self, n):
        self.root = [-1] * (n + 1)

    def find(self, x):
        stack = []
        while self.root[x] >= 0:
            stack.append(x)
            x = self.root[x]
        for i in stack:
            self.root[i] = x
        return x

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if -self.root[x] > -self.root[y]:
            x, y = y, x
        self.root[y] += self.root[x]
        self.root[x] = y
        return True

    def size(self, x):
        return -self.root[self.find(x)]


N, M, Q = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

X = [0] * N
itr = [0] * N
depth = [-1] * N
par = [-1] * N

for r in range(N):
    if depth[r] != -1:
        continue
    depth[r] = 0
    que = [(r, -1)]  # node, parent
    while que:
        s, p = que[-1]
        if itr[s] < len(G[s]):
            t = G[s][itr[s]]
            itr[s] += 1
            if t == p:
                continue
            if depth[t] != -1 and depth[t] < depth[s]:
                X[s] += 1
                X[t] -= 1
            elif depth[t] == -1:
                depth[t] = depth[s] + 1
                que.append((t, s))
                par[t] = s
        else:
            X[p] += X[s]
            # topo.append((s, p))
            que.pop()


bridge = X

uf = UnionFind(N)
for i in range(N):
    if bridge[i] == 0:
        uf.unite(i, par[i])


leader = set(uf.find(i) for i in range(N))
group = {x: [] for x in leader}
for i in range(N):
    group[uf.find(i)].append(i)


for _ in range(Q):
    x, y = map(int, input().split())
    x -= 1
    y -= 1
    if uf.find(x) == uf.find(y):
        print("Yes")
    else:
        print("No")
0