結果

問題 No.2319 Friends+
ユーザー yupoohyupooh
提出日時 2023-05-26 22:56:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,056 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 87,100 KB
実行使用メモリ 97,548 KB
最終ジャッジ日時 2023-08-26 13:18:42
合計ジャッジ時間 18,920 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
71,972 KB
testcase_01 AC 91 ms
71,792 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 285 ms
97,548 KB
testcase_05 WA -
testcase_06 AC 288 ms
97,512 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 91 ms
71,644 KB
testcase_18 AC 235 ms
81,172 KB
testcase_19 AC 278 ms
86,568 KB
testcase_20 AC 327 ms
81,912 KB
testcase_21 AC 329 ms
82,644 KB
testcase_22 AC 323 ms
82,032 KB
testcase_23 AC 307 ms
83,664 KB
testcase_24 AC 316 ms
82,344 KB
testcase_25 AC 322 ms
82,812 KB
testcase_26 AC 332 ms
82,836 KB
testcase_27 AC 317 ms
82,484 KB
testcase_28 AC 325 ms
82,312 KB
testcase_29 AC 329 ms
82,416 KB
testcase_30 AC 328 ms
82,652 KB
testcase_31 AC 325 ms
82,156 KB
testcase_32 AC 333 ms
82,944 KB
testcase_33 AC 330 ms
82,208 KB
testcase_34 AC 322 ms
82,636 KB
testcase_35 AC 327 ms
82,652 KB
testcase_36 AC 276 ms
86,448 KB
testcase_37 AC 280 ms
95,492 KB
testcase_38 AC 339 ms
87,088 KB
testcase_39 AC 330 ms
87,416 KB
testcase_40 AC 327 ms
86,920 KB
testcase_41 AC 331 ms
87,228 KB
testcase_42 AC 331 ms
87,372 KB
testcase_43 AC 327 ms
86,532 KB
testcase_44 AC 327 ms
86,820 KB
testcase_45 AC 321 ms
87,148 KB
testcase_46 AC 279 ms
96,360 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