結果

問題 No.2319 Friends+
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-31 15:40:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,563 ms / 3,000 ms
コード長 875 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 190,116 KB
最終ジャッジ日時 2024-08-31 15:41:00
合計ジャッジ時間 39,481 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,472 KB
testcase_01 AC 35 ms
53,148 KB
testcase_02 AC 1,268 ms
190,088 KB
testcase_03 AC 1,222 ms
190,032 KB
testcase_04 AC 1,233 ms
189,980 KB
testcase_05 AC 1,224 ms
189,920 KB
testcase_06 AC 1,243 ms
190,116 KB
testcase_07 AC 871 ms
90,104 KB
testcase_08 AC 876 ms
89,996 KB
testcase_09 AC 912 ms
90,072 KB
testcase_10 AC 887 ms
89,928 KB
testcase_11 AC 856 ms
90,156 KB
testcase_12 AC 58 ms
66,964 KB
testcase_13 AC 65 ms
66,260 KB
testcase_14 AC 63 ms
68,016 KB
testcase_15 AC 61 ms
67,028 KB
testcase_16 AC 60 ms
68,840 KB
testcase_17 AC 35 ms
52,792 KB
testcase_18 AC 732 ms
90,972 KB
testcase_19 AC 698 ms
90,300 KB
testcase_20 AC 761 ms
89,884 KB
testcase_21 AC 721 ms
90,168 KB
testcase_22 AC 831 ms
89,908 KB
testcase_23 AC 670 ms
89,872 KB
testcase_24 AC 677 ms
89,500 KB
testcase_25 AC 643 ms
89,436 KB
testcase_26 AC 703 ms
89,832 KB
testcase_27 AC 682 ms
89,852 KB
testcase_28 AC 992 ms
89,840 KB
testcase_29 AC 887 ms
89,812 KB
testcase_30 AC 819 ms
90,216 KB
testcase_31 AC 781 ms
89,948 KB
testcase_32 AC 746 ms
90,240 KB
testcase_33 AC 711 ms
90,116 KB
testcase_34 AC 743 ms
90,120 KB
testcase_35 AC 712 ms
89,820 KB
testcase_36 AC 682 ms
85,448 KB
testcase_37 AC 1,457 ms
131,036 KB
testcase_38 AC 709 ms
89,744 KB
testcase_39 AC 733 ms
90,120 KB
testcase_40 AC 752 ms
89,896 KB
testcase_41 AC 748 ms
89,936 KB
testcase_42 AC 761 ms
89,752 KB
testcase_43 AC 751 ms
89,836 KB
testcase_44 AC 864 ms
88,812 KB
testcase_45 AC 1,563 ms
128,576 KB
testcase_46 AC 1,061 ms
125,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
p=list(map(int,input().split()))
for i in range(n):
  p[i]-=1
B=448
e=[[] for i in range(n)]
for i in range(m):
  a,b=map(int,input().split())
  a-=1
  b-=1
  e[a]+=[b]
  e[b]+=[a]
f=[len(e[i])>=B for i in range(n)]
e2=[[] for i in range(n)]
for s in range(n):
  for t in e[s]:
    if f[t]==1:
      e2[s]+=[t]
c=[[] for i in range(n)]
for s in range(n):
  if f[s]==1:
    c[s]=[0]*n
for s in range(n):
  if f[s]==0:
    for t in e2[s]:
      c[t][p[s]]+=1
Q=int(input())
for _ in range(Q):
  x,y=map(int,input().split())
  x-=1
  y-=1
  ok=0
  if f[x]:
    if len(e2[x])>0:
      ok|=any(p[t]==p[y] for t in e2[x])
    ok|=c[x][p[y]]!=0
  else:
    ok|=any(p[t]==p[y] for t in e[x])
  ok&=p[x]!=p[y]
  if ok:
    print("Yes")
    if f[x]==0:
      for t in e2[x]:
        c[t][p[x]]-=1
        c[t][p[y]]+=1
    p[x]=p[y]
  else:
    print("No")
0