結果

問題 No.2319 Friends+
ユーザー yupoohyupooh
提出日時 2023-05-26 22:56:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,056 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 94,192 KB
最終ジャッジ日時 2024-06-07 08:33:05
合計ジャッジ時間 15,678 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,400 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 240 ms
94,080 KB
testcase_05 WA -
testcase_06 AC 244 ms
94,192 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 41 ms
54,400 KB
testcase_18 AC 198 ms
79,872 KB
testcase_19 AC 235 ms
85,120 KB
testcase_20 AC 275 ms
80,128 KB
testcase_21 AC 280 ms
80,356 KB
testcase_22 AC 280 ms
80,812 KB
testcase_23 AC 263 ms
81,664 KB
testcase_24 AC 272 ms
81,024 KB
testcase_25 AC 272 ms
80,640 KB
testcase_26 AC 280 ms
80,384 KB
testcase_27 AC 270 ms
80,372 KB
testcase_28 AC 275 ms
80,408 KB
testcase_29 AC 279 ms
80,224 KB
testcase_30 AC 278 ms
80,256 KB
testcase_31 AC 278 ms
80,248 KB
testcase_32 AC 281 ms
80,444 KB
testcase_33 AC 279 ms
79,960 KB
testcase_34 AC 274 ms
80,256 KB
testcase_35 AC 277 ms
80,768 KB
testcase_36 AC 230 ms
84,480 KB
testcase_37 AC 237 ms
93,568 KB
testcase_38 AC 291 ms
85,220 KB
testcase_39 AC 282 ms
85,232 KB
testcase_40 AC 287 ms
85,160 KB
testcase_41 AC 280 ms
84,956 KB
testcase_42 AC 287 ms
84,864 KB
testcase_43 AC 287 ms
84,864 KB
testcase_44 AC 275 ms
83,456 KB
testcase_45 AC 275 ms
84,864 KB
testcase_46 AC 234 ms
93,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
n,m=map(int,input().split())
p=list(map(int,input().split()))
from collections import defaultdict

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

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

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

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

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

uf=UnionFind(n)
for _ in range(m):
  a,b=map(int,input().split())
  uf.union(a-1,b-1)
memo=[]
memocnt=[]
dic={}
tmp=0
for l in list(uf.all_group_members().values()):
  se=set()
  cnt=defaultdict(int)
  for i in l:
    se.add(p[i])
    cnt[p[i]]+=1
    dic[i]=tmp
  memo.append(se)
  memocnt.append(cnt)
  tmp+=1
q=int(input())
for _ in range(q):
  x,y=map(int,input().split())
  x-=1
  y-=1
  if p[x]==p[y]:
    print("No")
    continue
  if p[y] not in memo[dic[x]]:
    print("No")
    continue
  memocnt[dic[x]][p[x]]-=1
  if memocnt[dic[x]][p[x]]==0:
    memo[dic[x]].remove(p[x])
  p[x]=p[y]
  memocnt[dic[x]][p[x]]+=1
  memo[dic[x]].add(p[x])
  print("Yes")
0