結果

問題 No.2319 Friends+
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-31 15:12:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 867 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 185,680 KB
最終ジャッジ日時 2024-08-31 15:13:39
合計ジャッジ時間 42,610 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,308 KB
testcase_01 AC 36 ms
53,448 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 952 ms
89,524 KB
testcase_08 AC 925 ms
89,752 KB
testcase_09 AC 925 ms
89,764 KB
testcase_10 AC 919 ms
89,240 KB
testcase_11 AC 965 ms
89,428 KB
testcase_12 AC 62 ms
66,340 KB
testcase_13 AC 61 ms
66,660 KB
testcase_14 AC 64 ms
67,828 KB
testcase_15 AC 65 ms
68,064 KB
testcase_16 AC 65 ms
68,776 KB
testcase_17 AC 38 ms
52,484 KB
testcase_18 AC 743 ms
91,100 KB
testcase_19 AC 721 ms
90,592 KB
testcase_20 AC 795 ms
90,092 KB
testcase_21 AC 803 ms
89,848 KB
testcase_22 AC 856 ms
89,560 KB
testcase_23 AC 732 ms
90,008 KB
testcase_24 AC 705 ms
89,708 KB
testcase_25 AC 697 ms
89,648 KB
testcase_26 AC 713 ms
89,892 KB
testcase_27 AC 1,408 ms
89,696 KB
testcase_28 AC 1,079 ms
89,600 KB
testcase_29 AC 945 ms
89,448 KB
testcase_30 AC 873 ms
89,448 KB
testcase_31 AC 791 ms
89,752 KB
testcase_32 AC 789 ms
89,820 KB
testcase_33 AC 798 ms
90,032 KB
testcase_34 AC 744 ms
89,836 KB
testcase_35 AC 762 ms
89,704 KB
testcase_36 AC 748 ms
85,860 KB
testcase_37 AC 1,497 ms
131,152 KB
testcase_38 AC 760 ms
89,888 KB
testcase_39 AC 787 ms
90,388 KB
testcase_40 AC 751 ms
89,884 KB
testcase_41 AC 801 ms
90,212 KB
testcase_42 AC 782 ms
89,260 KB
testcase_43 AC 849 ms
89,476 KB
testcase_44 AC 907 ms
88,540 KB
testcase_45 AC 973 ms
87,820 KB
testcase_46 AC 1,889 ms
124,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
p=list(map(int,input().split()))
for i in range(n):
  p[i]-=1
B=633
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]
  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][p[x]]-=1
        c[t][p[y]]+=1
    p[x]=p[y]
  else:
    print("No")
0