結果

問題 No.2319 Friends+
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-31 14:39:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 191,012 KB
最終ジャッジ日時 2024-08-31 14:39:46
合計ジャッジ時間 43,869 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,668 KB
testcase_01 AC 36 ms
52,524 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 935 ms
89,756 KB
testcase_08 AC 923 ms
89,804 KB
testcase_09 AC 926 ms
89,652 KB
testcase_10 AC 932 ms
89,956 KB
testcase_11 AC 893 ms
89,688 KB
testcase_12 AC 59 ms
66,428 KB
testcase_13 AC 60 ms
67,832 KB
testcase_14 AC 64 ms
68,192 KB
testcase_15 AC 62 ms
67,340 KB
testcase_16 AC 63 ms
68,108 KB
testcase_17 AC 35 ms
53,544 KB
testcase_18 AC 726 ms
91,424 KB
testcase_19 AC 722 ms
90,508 KB
testcase_20 AC 847 ms
90,364 KB
testcase_21 AC 784 ms
90,296 KB
testcase_22 AC 881 ms
90,144 KB
testcase_23 AC 733 ms
90,476 KB
testcase_24 AC 701 ms
90,004 KB
testcase_25 AC 713 ms
89,992 KB
testcase_26 AC 682 ms
89,968 KB
testcase_27 AC 709 ms
89,724 KB
testcase_28 AC 1,101 ms
89,992 KB
testcase_29 AC 980 ms
90,324 KB
testcase_30 AC 850 ms
89,960 KB
testcase_31 AC 823 ms
90,268 KB
testcase_32 AC 792 ms
90,200 KB
testcase_33 AC 765 ms
90,152 KB
testcase_34 AC 786 ms
90,040 KB
testcase_35 AC 759 ms
90,088 KB
testcase_36 AC 771 ms
85,920 KB
testcase_37 AC 1,452 ms
131,364 KB
testcase_38 AC 769 ms
90,068 KB
testcase_39 AC 785 ms
90,464 KB
testcase_40 AC 755 ms
90,004 KB
testcase_41 AC 808 ms
90,440 KB
testcase_42 AC 781 ms
89,988 KB
testcase_43 AC 827 ms
89,740 KB
testcase_44 AC 898 ms
89,224 KB
testcase_45 AC 1,656 ms
128,800 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
p=list(map(int,input().split()))
for i in range(n):
  p[i]-=1
B=int(m**0.5)+1
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=p[x]!=p[y]
  pp=p[x]
  np=p[y]
  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])
  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