結果

問題 No.2319 Friends+
ユーザー titiatitia
提出日時 2023-10-05 00:44:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,319 ms / 3,000 ms
コード長 691 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 314,404 KB
最終ジャッジ日時 2024-07-26 14:56:41
合計ジャッジ時間 76,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,088 KB
testcase_01 AC 39 ms
52,696 KB
testcase_02 AC 362 ms
104,360 KB
testcase_03 AC 338 ms
104,752 KB
testcase_04 AC 332 ms
104,296 KB
testcase_05 AC 333 ms
104,220 KB
testcase_06 AC 335 ms
104,292 KB
testcase_07 AC 2,210 ms
313,820 KB
testcase_08 AC 2,001 ms
312,300 KB
testcase_09 AC 1,984 ms
312,388 KB
testcase_10 AC 1,997 ms
313,316 KB
testcase_11 AC 1,990 ms
312,500 KB
testcase_12 AC 45 ms
55,348 KB
testcase_13 AC 44 ms
55,476 KB
testcase_14 AC 45 ms
56,704 KB
testcase_15 AC 45 ms
55,740 KB
testcase_16 AC 44 ms
55,436 KB
testcase_17 AC 38 ms
53,016 KB
testcase_18 AC 1,534 ms
290,680 KB
testcase_19 AC 2,085 ms
312,148 KB
testcase_20 AC 1,942 ms
313,236 KB
testcase_21 AC 1,951 ms
313,364 KB
testcase_22 AC 1,919 ms
313,456 KB
testcase_23 AC 2,131 ms
314,404 KB
testcase_24 AC 2,150 ms
313,992 KB
testcase_25 AC 2,025 ms
313,716 KB
testcase_26 AC 1,996 ms
312,532 KB
testcase_27 AC 1,954 ms
312,976 KB
testcase_28 AC 1,931 ms
313,580 KB
testcase_29 AC 1,892 ms
313,228 KB
testcase_30 AC 1,899 ms
312,664 KB
testcase_31 AC 1,908 ms
312,784 KB
testcase_32 AC 1,923 ms
313,688 KB
testcase_33 AC 1,932 ms
313,388 KB
testcase_34 AC 1,991 ms
313,636 KB
testcase_35 AC 2,056 ms
313,360 KB
testcase_36 AC 1,311 ms
275,324 KB
testcase_37 AC 1,328 ms
172,468 KB
testcase_38 AC 2,278 ms
313,772 KB
testcase_39 AC 2,291 ms
313,360 KB
testcase_40 AC 2,286 ms
313,164 KB
testcase_41 AC 2,314 ms
313,928 KB
testcase_42 AC 2,319 ms
312,548 KB
testcase_43 AC 2,267 ms
312,888 KB
testcase_44 AC 2,164 ms
309,300 KB
testcase_45 AC 1,890 ms
295,620 KB
testcase_46 AC 1,585 ms
264,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
P=list(map(int,input().split()))

for i in range(N):
    P[i]-=1

Friends=[0]*N

for i in range(M):
    a,b=map(int,input().split())
    a-=1
    b-=1
    Friends[a]|=1<<b
    Friends[b]|=1<<a

Rooms=[0]*N

for i in range(N):
    x=P[i]
    Rooms[x]|=(1<<i)

Q=int(input())

for tests in range(Q):
    x,y=map(int,input().split())
    x-=1
    y-=1

    room=P[y]

    #print(P,Rooms,Friends)

    if P[x]==P[y] or Rooms[room] & Friends[x]==0:
        print("No")
        continue
    else:
        print("Yes")
        mae=P[x]
        Rooms[mae]^=1<<x

        P[x]=P[y]
        Rooms[P[x]]^=1<<x
        
        
    

0