結果

問題 No.2319 Friends+
ユーザー yupoohyupooh
提出日時 2023-05-26 23:13:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,034 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 87,304 KB
実行使用メモリ 95,392 KB
最終ジャッジ日時 2023-08-26 13:38:53
合計ジャッジ時間 17,956 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
71,724 KB
testcase_01 AC 88 ms
72,000 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 269 ms
95,312 KB
testcase_05 WA -
testcase_06 AC 263 ms
95,392 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 86 ms
71,592 KB
testcase_18 AC 225 ms
79,204 KB
testcase_19 AC 259 ms
84,484 KB
testcase_20 AC 303 ms
79,892 KB
testcase_21 AC 308 ms
80,320 KB
testcase_22 AC 303 ms
80,156 KB
testcase_23 AC 287 ms
81,568 KB
testcase_24 AC 294 ms
80,404 KB
testcase_25 AC 313 ms
80,948 KB
testcase_26 AC 320 ms
80,888 KB
testcase_27 AC 305 ms
81,116 KB
testcase_28 AC 301 ms
80,496 KB
testcase_29 AC 309 ms
80,332 KB
testcase_30 AC 305 ms
80,812 KB
testcase_31 AC 302 ms
80,060 KB
testcase_32 AC 310 ms
80,536 KB
testcase_33 AC 308 ms
80,360 KB
testcase_34 AC 302 ms
80,764 KB
testcase_35 AC 306 ms
80,624 KB
testcase_36 AC 254 ms
84,248 KB
testcase_37 AC 255 ms
92,700 KB
testcase_38 AC 325 ms
85,204 KB
testcase_39 AC 310 ms
85,316 KB
testcase_40 AC 319 ms
84,572 KB
testcase_41 AC 318 ms
85,276 KB
testcase_42 AC 316 ms
85,284 KB
testcase_43 AC 312 ms
84,676 KB
testcase_44 AC 313 ms
83,532 KB
testcase_45 AC 305 ms
84,948 KB
testcase_46 AC 254 ms
92,652 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=[0]*n
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
  print("Yes")
0