結果

問題 No.2319 Friends+
ユーザー yupoohyupooh
提出日時 2023-05-26 23:41:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,190 ms / 3,000 ms
コード長 503 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 313,744 KB
最終ジャッジ日時 2024-06-07 09:27:33
合計ジャッジ時間 67,034 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,384 KB
testcase_01 AC 36 ms
53,352 KB
testcase_02 AC 327 ms
104,276 KB
testcase_03 AC 335 ms
104,356 KB
testcase_04 AC 319 ms
104,276 KB
testcase_05 AC 319 ms
104,372 KB
testcase_06 AC 313 ms
104,296 KB
testcase_07 AC 1,767 ms
313,068 KB
testcase_08 AC 1,738 ms
312,676 KB
testcase_09 AC 1,750 ms
312,336 KB
testcase_10 AC 1,749 ms
313,260 KB
testcase_11 AC 1,765 ms
312,960 KB
testcase_12 AC 44 ms
56,172 KB
testcase_13 AC 43 ms
57,004 KB
testcase_14 AC 43 ms
56,168 KB
testcase_15 AC 43 ms
56,432 KB
testcase_16 AC 44 ms
56,348 KB
testcase_17 AC 38 ms
52,552 KB
testcase_18 AC 1,358 ms
290,228 KB
testcase_19 AC 1,834 ms
310,996 KB
testcase_20 AC 1,708 ms
313,296 KB
testcase_21 AC 1,703 ms
313,220 KB
testcase_22 AC 1,692 ms
312,992 KB
testcase_23 AC 1,882 ms
313,728 KB
testcase_24 AC 1,927 ms
313,496 KB
testcase_25 AC 1,809 ms
313,572 KB
testcase_26 AC 1,795 ms
313,152 KB
testcase_27 AC 1,746 ms
312,896 KB
testcase_28 AC 1,780 ms
313,720 KB
testcase_29 AC 1,725 ms
313,172 KB
testcase_30 AC 1,729 ms
312,748 KB
testcase_31 AC 1,717 ms
312,740 KB
testcase_32 AC 1,742 ms
313,744 KB
testcase_33 AC 1,768 ms
313,144 KB
testcase_34 AC 1,778 ms
313,400 KB
testcase_35 AC 1,891 ms
312,936 KB
testcase_36 AC 1,211 ms
275,272 KB
testcase_37 AC 1,221 ms
172,436 KB
testcase_38 AC 2,190 ms
313,516 KB
testcase_39 AC 2,167 ms
313,544 KB
testcase_40 AC 2,124 ms
313,600 KB
testcase_41 AC 2,125 ms
313,424 KB
testcase_42 AC 2,147 ms
312,660 KB
testcase_43 AC 2,127 ms
312,980 KB
testcase_44 AC 2,072 ms
309,052 KB
testcase_45 AC 1,706 ms
295,728 KB
testcase_46 AC 1,453 ms
264,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
n,m=map(int,input().split())
p=list(map(int,input().split()))
fri=[0]*n
for _ in range(m):
  a,b=map(int,input().split())
  a-=1
  b-=1
  fri[a]^=1<<b
  fri[b]^=1<<a
wor=[0]*n
for i in range(n):
  p[i]-=1
  wor[p[i]]^=1<<i
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 fri[x]&wor[p[y]]==0:
    print("No")
    continue
  wor[p[x]]^=1<<x
  wor[p[y]]^=1<<x
  p[x]=p[y]
  print("Yes")
0