結果

問題 No.2319 Friends+
ユーザー mkawa2mkawa2
提出日時 2023-05-27 07:34:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,159 ms / 3,000 ms
コード長 1,188 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,876 KB
実行使用メモリ 310,840 KB
最終ジャッジ日時 2024-06-07 13:15:45
合計ジャッジ時間 74,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,268 KB
testcase_01 AC 36 ms
52,736 KB
testcase_02 AC 399 ms
104,900 KB
testcase_03 AC 397 ms
105,068 KB
testcase_04 AC 386 ms
104,760 KB
testcase_05 AC 388 ms
105,192 KB
testcase_06 AC 390 ms
104,788 KB
testcase_07 AC 2,061 ms
307,980 KB
testcase_08 AC 2,050 ms
308,552 KB
testcase_09 AC 1,994 ms
308,632 KB
testcase_10 AC 1,988 ms
308,092 KB
testcase_11 AC 2,013 ms
308,272 KB
testcase_12 AC 53 ms
64,708 KB
testcase_13 AC 54 ms
64,432 KB
testcase_14 AC 52 ms
65,472 KB
testcase_15 AC 53 ms
64,516 KB
testcase_16 AC 54 ms
64,988 KB
testcase_17 AC 37 ms
52,676 KB
testcase_18 AC 1,536 ms
287,740 KB
testcase_19 AC 2,047 ms
309,804 KB
testcase_20 AC 1,922 ms
308,412 KB
testcase_21 AC 1,919 ms
308,892 KB
testcase_22 AC 1,967 ms
308,560 KB
testcase_23 AC 2,133 ms
310,840 KB
testcase_24 AC 2,150 ms
309,152 KB
testcase_25 AC 2,074 ms
308,616 KB
testcase_26 AC 2,040 ms
308,940 KB
testcase_27 AC 2,004 ms
308,504 KB
testcase_28 AC 1,973 ms
309,244 KB
testcase_29 AC 1,942 ms
309,120 KB
testcase_30 AC 1,918 ms
308,876 KB
testcase_31 AC 1,928 ms
309,196 KB
testcase_32 AC 1,944 ms
308,820 KB
testcase_33 AC 1,948 ms
309,104 KB
testcase_34 AC 1,997 ms
308,588 KB
testcase_35 AC 2,063 ms
308,296 KB
testcase_36 AC 1,338 ms
277,108 KB
testcase_37 AC 1,107 ms
150,432 KB
testcase_38 AC 2,136 ms
308,624 KB
testcase_39 AC 2,159 ms
309,076 KB
testcase_40 AC 2,137 ms
308,632 KB
testcase_41 AC 2,143 ms
308,836 KB
testcase_42 AC 2,137 ms
308,788 KB
testcase_43 AC 2,081 ms
309,076 KB
testcase_44 AC 1,999 ms
308,228 KB
testcase_45 AC 1,657 ms
293,064 KB
testcase_46 AC 1,319 ms
227,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# md = 10**9+7
md = 998244353

n, m = LI()
pp = LI1()
to = [0]*n
for _ in range(m):
    u, v = LI1()
    to[u] |= 1 << v
    to[v] |= 1 << u

mem = [0]*n
for u, p in enumerate(pp): mem[p] |= 1 << u

for _ in range(II()):
    x, y = LI1()
    p, q = pp[x], pp[y]
    if p == q:
        print("No")
    else:
        if to[x] & mem[q]:
            print("Yes")
            mem[p] ^= 1 << x
            mem[q] ^= 1 << x
            pp[x] = q
        else:
            print("No")
0