結果

問題 No.2319 Friends+
ユーザー flygonflygon
提出日時 2023-05-26 22:55:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,513 ms / 3,000 ms
コード長 814 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 188,612 KB
最終ジャッジ日時 2024-06-07 08:31:40
合計ジャッジ時間 43,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 33 ms
52,096 KB
testcase_02 AC 928 ms
187,916 KB
testcase_03 AC 1,087 ms
187,432 KB
testcase_04 AC 1,173 ms
188,612 KB
testcase_05 AC 913 ms
187,880 KB
testcase_06 AC 975 ms
188,560 KB
testcase_07 AC 1,362 ms
186,752 KB
testcase_08 AC 1,333 ms
186,624 KB
testcase_09 AC 1,316 ms
186,112 KB
testcase_10 AC 1,335 ms
186,496 KB
testcase_11 AC 1,361 ms
186,368 KB
testcase_12 AC 64 ms
64,384 KB
testcase_13 AC 64 ms
64,640 KB
testcase_14 AC 76 ms
70,912 KB
testcase_15 AC 66 ms
65,536 KB
testcase_16 AC 81 ms
72,960 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 1,129 ms
186,368 KB
testcase_19 AC 972 ms
186,112 KB
testcase_20 AC 943 ms
186,240 KB
testcase_21 AC 988 ms
186,752 KB
testcase_22 AC 954 ms
186,368 KB
testcase_23 AC 1,513 ms
186,368 KB
testcase_24 AC 1,006 ms
186,752 KB
testcase_25 AC 984 ms
187,008 KB
testcase_26 AC 991 ms
186,496 KB
testcase_27 AC 980 ms
186,368 KB
testcase_28 AC 981 ms
186,368 KB
testcase_29 AC 951 ms
186,368 KB
testcase_30 AC 951 ms
186,240 KB
testcase_31 AC 968 ms
186,624 KB
testcase_32 AC 935 ms
186,624 KB
testcase_33 AC 958 ms
186,240 KB
testcase_34 AC 933 ms
186,496 KB
testcase_35 AC 883 ms
186,112 KB
testcase_36 AC 953 ms
186,880 KB
testcase_37 AC 704 ms
186,764 KB
testcase_38 AC 772 ms
187,008 KB
testcase_39 AC 753 ms
187,136 KB
testcase_40 AC 746 ms
187,136 KB
testcase_41 AC 750 ms
187,136 KB
testcase_42 AC 751 ms
187,008 KB
testcase_43 AC 763 ms
187,264 KB
testcase_44 AC 771 ms
187,292 KB
testcase_45 AC 748 ms
187,008 KB
testcase_46 AC 721 ms
186,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
p = list(map(int,input().split()))

graph = [[0]*(n//60+5) for i in range(n)]
for i in range(m):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    graph[a][b//60] |= 1<<(b%60)
    graph[b][a//60] |= 1<<(a%60)

world = [[0]*(n//60 + 5) for i in range(n+1)]
for i in range(n):
    world[p[i]][i//60] |= 1<<(i%60)

q = int(input())
for i in range(q):
    x,y = map(int,input().split())
    x -= 1
    y -= 1
    wy = p[y]
    now = 0
    if p[x] == wy:
        print('No')
        continue
    ok = 0
    for j in range(n//60+5):
        if world[wy][j] & graph[x][j] != 0:
            ok = 1
            break
    if ok:
        print('Yes')
        world[p[x]][x//60] -= 1<<(x%60)
        world[p[y]][x//60] |= 1<<(x%60)
        p[x] = p[y]
    else:
        print('No') 

0