結果

問題 No.2319 Friends+
ユーザー hitonanodehitonanode
提出日時 2023-05-27 23:18:28
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 364 ms / 3,000 ms
コード長 923 bytes
コンパイル時間 939 ms
コンパイル使用メモリ 91,352 KB
実行使用メモリ 101,272 KB
最終ジャッジ日時 2024-06-07 20:26:39
合計ジャッジ時間 13,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 185 ms
101,108 KB
testcase_03 AC 184 ms
101,104 KB
testcase_04 AC 182 ms
101,128 KB
testcase_05 AC 178 ms
101,208 KB
testcase_06 AC 182 ms
101,084 KB
testcase_07 AC 349 ms
101,072 KB
testcase_08 AC 349 ms
101,112 KB
testcase_09 AC 352 ms
101,124 KB
testcase_10 AC 364 ms
101,140 KB
testcase_11 AC 354 ms
101,156 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 229 ms
101,136 KB
testcase_19 AC 261 ms
101,204 KB
testcase_20 AC 206 ms
101,152 KB
testcase_21 AC 206 ms
101,180 KB
testcase_22 AC 207 ms
101,072 KB
testcase_23 AC 248 ms
101,204 KB
testcase_24 AC 235 ms
101,112 KB
testcase_25 AC 219 ms
101,188 KB
testcase_26 AC 217 ms
101,072 KB
testcase_27 AC 218 ms
101,112 KB
testcase_28 AC 210 ms
101,076 KB
testcase_29 AC 208 ms
101,100 KB
testcase_30 AC 208 ms
101,100 KB
testcase_31 AC 207 ms
101,168 KB
testcase_32 AC 208 ms
101,128 KB
testcase_33 AC 204 ms
101,164 KB
testcase_34 AC 199 ms
101,092 KB
testcase_35 AC 196 ms
101,272 KB
testcase_36 AC 248 ms
101,160 KB
testcase_37 AC 157 ms
101,112 KB
testcase_38 AC 183 ms
101,008 KB
testcase_39 AC 184 ms
101,096 KB
testcase_40 AC 181 ms
101,168 KB
testcase_41 AC 185 ms
101,100 KB
testcase_42 AC 185 ms
101,132 KB
testcase_43 AC 184 ms
101,096 KB
testcase_44 AC 182 ms
101,248 KB
testcase_45 AC 172 ms
101,068 KB
testcase_46 AC 169 ms
101,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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