結果

問題 No.2319 Friends+
ユーザー hitonanodehitonanode
提出日時 2023-05-27 23:18:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 325 ms / 3,000 ms
コード長 1,002 bytes
コンパイル時間 1,774 ms
コンパイル使用メモリ 96,036 KB
実行使用メモリ 101,268 KB
最終ジャッジ日時 2024-06-07 20:27:08
合計ジャッジ時間 12,982 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 170 ms
101,148 KB
testcase_03 AC 155 ms
101,108 KB
testcase_04 AC 157 ms
101,168 KB
testcase_05 AC 151 ms
101,160 KB
testcase_06 AC 161 ms
101,268 KB
testcase_07 AC 319 ms
101,008 KB
testcase_08 AC 309 ms
101,196 KB
testcase_09 AC 325 ms
101,092 KB
testcase_10 AC 309 ms
101,108 KB
testcase_11 AC 310 ms
101,172 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 187 ms
101,104 KB
testcase_19 AC 218 ms
101,208 KB
testcase_20 AC 167 ms
101,164 KB
testcase_21 AC 167 ms
101,248 KB
testcase_22 AC 168 ms
101,156 KB
testcase_23 AC 207 ms
101,080 KB
testcase_24 AC 192 ms
101,084 KB
testcase_25 AC 178 ms
101,184 KB
testcase_26 AC 174 ms
101,104 KB
testcase_27 AC 177 ms
101,004 KB
testcase_28 AC 171 ms
101,156 KB
testcase_29 AC 168 ms
101,100 KB
testcase_30 AC 169 ms
101,156 KB
testcase_31 AC 168 ms
101,268 KB
testcase_32 AC 168 ms
101,160 KB
testcase_33 AC 167 ms
101,120 KB
testcase_34 AC 165 ms
101,124 KB
testcase_35 AC 162 ms
101,144 KB
testcase_36 AC 222 ms
101,072 KB
testcase_37 AC 125 ms
101,092 KB
testcase_38 AC 150 ms
101,004 KB
testcase_39 AC 151 ms
101,100 KB
testcase_40 AC 149 ms
101,092 KB
testcase_41 AC 154 ms
101,084 KB
testcase_42 AC 156 ms
101,092 KB
testcase_43 AC 152 ms
101,172 KB
testcase_44 AC 151 ms
101,160 KB
testcase_45 AC 142 ms
101,124 KB
testcase_46 AC 134 ms
101,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#include <bitset>
#include <iostream>
#include <vector>
using namespace std;

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N, M;
    cin >> N >> M;
    using BS = bitset<20000>;
    vector<BS> is_friend(N), world_has(N);
    vector<int> P(N);

    for (int i = 0; i < N; ++i) cin >> P.at(i), P.at(i)--, world_has.at(P.at(i)).set(i);

    while (M--) {
        int a, b;
        cin >> a >> b;
        --a, --b;
        is_friend.at(a).set(b);
        is_friend.at(b).set(a);
    }

    int Q;
    cin >> Q;
    while (Q--) {
        int x, y;
        cin >> x >> y;
        --x, --y;
        int j = P.at(y);
        if (P.at(x) != P.at(y) and (world_has.at(P.at(y)) & is_friend.at(x)).any()) {
            puts("Yes");
            world_has.at(P.at(x)).reset(x);
            P.at(x) = P.at(y);
            world_has.at(P.at(x)).set(x);
        } else {
            puts("No");
        }
    }
}
0