結果

問題 No.2319 Friends+
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-31 14:44:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 190,492 KB
最終ジャッジ日時 2024-08-31 14:45:29
合計ジャッジ時間 41,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,528 KB
testcase_01 AC 34 ms
53,256 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 839 ms
89,468 KB
testcase_08 AC 849 ms
89,376 KB
testcase_09 AC 874 ms
89,368 KB
testcase_10 AC 865 ms
89,348 KB
testcase_11 AC 858 ms
89,484 KB
testcase_12 AC 57 ms
66,656 KB
testcase_13 AC 56 ms
66,628 KB
testcase_14 AC 57 ms
68,692 KB
testcase_15 AC 59 ms
67,840 KB
testcase_16 AC 62 ms
67,824 KB
testcase_17 AC 37 ms
52,316 KB
testcase_18 AC 696 ms
91,136 KB
testcase_19 AC 723 ms
90,616 KB
testcase_20 AC 796 ms
89,960 KB
testcase_21 AC 780 ms
89,824 KB
testcase_22 AC 847 ms
89,908 KB
testcase_23 AC 666 ms
89,968 KB
testcase_24 AC 689 ms
89,948 KB
testcase_25 AC 652 ms
89,636 KB
testcase_26 AC 689 ms
90,048 KB
testcase_27 AC 645 ms
89,628 KB
testcase_28 AC 1,038 ms
89,828 KB
testcase_29 AC 895 ms
89,920 KB
testcase_30 AC 796 ms
89,828 KB
testcase_31 AC 790 ms
90,000 KB
testcase_32 AC 779 ms
90,152 KB
testcase_33 AC 763 ms
89,960 KB
testcase_34 AC 743 ms
89,972 KB
testcase_35 AC 706 ms
89,832 KB
testcase_36 AC 721 ms
85,536 KB
testcase_37 AC 1,460 ms
130,984 KB
testcase_38 AC 700 ms
89,864 KB
testcase_39 AC 726 ms
90,008 KB
testcase_40 AC 767 ms
90,176 KB
testcase_41 AC 758 ms
90,000 KB
testcase_42 AC 757 ms
89,972 KB
testcase_43 AC 800 ms
89,900 KB
testcase_44 AC 851 ms
88,924 KB
testcase_45 AC 1,553 ms
128,548 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=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=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