結果

問題 No.2319 Friends+
ユーザー tatyamtatyam
提出日時 2023-03-15 02:29:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 324 ms / 3,000 ms
コード長 968 bytes
コンパイル時間 1,331 ms
コンパイル使用メモリ 96,836 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-09-18 09:45:56
合計ジャッジ時間 13,316 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 175 ms
101,120 KB
testcase_03 AC 174 ms
100,992 KB
testcase_04 AC 170 ms
100,992 KB
testcase_05 AC 164 ms
100,992 KB
testcase_06 AC 164 ms
100,996 KB
testcase_07 AC 309 ms
101,088 KB
testcase_08 AC 314 ms
101,120 KB
testcase_09 AC 317 ms
101,104 KB
testcase_10 AC 311 ms
101,120 KB
testcase_11 AC 324 ms
101,120 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 204 ms
101,120 KB
testcase_19 AC 242 ms
101,112 KB
testcase_20 AC 185 ms
101,108 KB
testcase_21 AC 190 ms
101,056 KB
testcase_22 AC 184 ms
101,128 KB
testcase_23 AC 207 ms
101,120 KB
testcase_24 AC 186 ms
101,168 KB
testcase_25 AC 179 ms
101,204 KB
testcase_26 AC 194 ms
100,992 KB
testcase_27 AC 188 ms
101,184 KB
testcase_28 AC 178 ms
101,092 KB
testcase_29 AC 176 ms
101,248 KB
testcase_30 AC 177 ms
101,120 KB
testcase_31 AC 175 ms
101,120 KB
testcase_32 AC 176 ms
101,120 KB
testcase_33 AC 178 ms
101,120 KB
testcase_34 AC 179 ms
101,092 KB
testcase_35 AC 169 ms
101,248 KB
testcase_36 AC 228 ms
101,072 KB
testcase_37 AC 141 ms
101,176 KB
testcase_38 AC 158 ms
101,108 KB
testcase_39 AC 165 ms
101,000 KB
testcase_40 AC 168 ms
101,196 KB
testcase_41 AC 168 ms
101,132 KB
testcase_42 AC 171 ms
101,108 KB
testcase_43 AC 170 ms
101,180 KB
testcase_44 AC 165 ms
101,120 KB
testcase_45 AC 157 ms
101,120 KB
testcase_46 AC 152 ms
101,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("Ofast,unroll-loops")
#include <bitset>
#include <iostream>
#include <vector>
using namespace std;

constexpr int N_MAX = 20032;
int main() {
    cin.tie(0)->sync_with_stdio(0);
    
    int N, M;
    cin >> N >> M;
    vector<int> P(N);
    for(int& p : P) {
        cin >> p;
        p--;
    }
    
    vector<bitset<N_MAX>> room(N), friends(N);
    for(int i = 0; i < N; i++) room[P[i]][i] = 1;
    while(M--) {
        int A, B;
        cin >> A >> B;
        A--; B--;
        friends[A][B] = friends[B][A] = 1;
    }
    
    int Q;
    cin >> Q;
    while(Q--) {
        int X, Y;
        cin >> X >> Y;
        X--; Y--;
        if(P[X] == P[Y]) {
            puts("No");
            continue;
        }
        if((friends[X] & room[P[Y]]).none()) {
            puts("No");
            continue;
        }
        puts("Yes");
        room[P[X]][X] = 0;
        P[X] = P[Y];
        room[P[X]][X] = 1;
    }
}
0