結果

問題 No.2319 Friends+
ユーザー tatyamtatyam
提出日時 2023-03-15 02:23:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 877 ms / 3,000 ms
コード長 857 bytes
コンパイル時間 1,135 ms
コンパイル使用メモリ 90,724 KB
実行使用メモリ 101,284 KB
最終ジャッジ日時 2024-09-18 09:45:41
合計ジャッジ時間 30,463 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 608 ms
101,120 KB
testcase_03 AC 599 ms
101,248 KB
testcase_04 AC 598 ms
101,092 KB
testcase_05 AC 583 ms
101,184 KB
testcase_06 AC 598 ms
101,248 KB
testcase_07 AC 877 ms
101,120 KB
testcase_08 AC 856 ms
101,248 KB
testcase_09 AC 862 ms
101,248 KB
testcase_10 AC 857 ms
101,120 KB
testcase_11 AC 856 ms
101,176 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 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 640 ms
101,080 KB
testcase_19 AC 673 ms
101,064 KB
testcase_20 AC 619 ms
101,248 KB
testcase_21 AC 618 ms
101,284 KB
testcase_22 AC 615 ms
101,120 KB
testcase_23 AC 653 ms
101,096 KB
testcase_24 AC 646 ms
101,120 KB
testcase_25 AC 645 ms
101,072 KB
testcase_26 AC 621 ms
101,068 KB
testcase_27 AC 631 ms
101,216 KB
testcase_28 AC 618 ms
101,248 KB
testcase_29 AC 625 ms
101,236 KB
testcase_30 AC 622 ms
101,048 KB
testcase_31 AC 608 ms
101,120 KB
testcase_32 AC 612 ms
101,064 KB
testcase_33 AC 614 ms
101,160 KB
testcase_34 AC 611 ms
101,104 KB
testcase_35 AC 595 ms
101,120 KB
testcase_36 AC 671 ms
101,120 KB
testcase_37 AC 558 ms
101,160 KB
testcase_38 AC 605 ms
101,248 KB
testcase_39 AC 592 ms
101,180 KB
testcase_40 AC 596 ms
101,164 KB
testcase_41 AC 598 ms
101,072 KB
testcase_42 AC 609 ms
101,120 KB
testcase_43 AC 607 ms
101,104 KB
testcase_44 AC 603 ms
101,248 KB
testcase_45 AC 597 ms
101,156 KB
testcase_46 AC 576 ms
101,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bitset>
#include <iostream>
#include <vector>
using namespace std;

constexpr int N_MAX = 20032;
int main() {
    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