結果

問題 No.2319 Friends+
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-31 14:27:08
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 875 bytes
コンパイル時間 530 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 166,508 KB
最終ジャッジ日時 2024-08-31 14:27:46
合計ジャッジ時間 37,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,008 KB
testcase_01 AC 37 ms
53,140 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 931 ms
89,364 KB
testcase_08 AC 909 ms
89,356 KB
testcase_09 AC 941 ms
89,328 KB
testcase_10 AC 930 ms
89,380 KB
testcase_11 AC 935 ms
89,340 KB
testcase_12 AC 61 ms
67,016 KB
testcase_13 AC 59 ms
67,336 KB
testcase_14 AC 63 ms
67,772 KB
testcase_15 AC 62 ms
68,960 KB
testcase_16 AC 64 ms
69,020 KB
testcase_17 AC 37 ms
52,564 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 803 ms
89,880 KB
testcase_21 AC 805 ms
89,896 KB
testcase_22 AC 892 ms
89,996 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 1,107 ms
89,936 KB
testcase_29 AC 920 ms
90,220 KB
testcase_30 AC 905 ms
89,888 KB
testcase_31 AC 816 ms
89,936 KB
testcase_32 AC 780 ms
90,028 KB
testcase_33 AC 764 ms
90,024 KB
testcase_34 AC 789 ms
89,988 KB
testcase_35 AC 756 ms
89,892 KB
testcase_36 AC 773 ms
85,912 KB
testcase_37 RE -
testcase_38 AC 762 ms
89,944 KB
testcase_39 AC 779 ms
90,016 KB
testcase_40 AC 755 ms
89,860 KB
testcase_41 AC 789 ms
90,212 KB
testcase_42 AC 831 ms
89,640 KB
testcase_43 AC 809 ms
89,504 KB
testcase_44 AC 904 ms
88,764 KB
testcase_45 RE -
testcase_46 RE -
権限があれば一括ダウンロードができます

ソースコード

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={i:0 for i in range(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=p[x]!=p[y]
  pp=p[x]
  np=p[y]
  if f[x]:
    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])
  if ok:
    print("Yes")
    if f[x]==0:
      for t in e2[x]:
        c[t][pp]-=1
        c[t][np]+=1
    p[x]=p[y]
  else:
    print("No")
0