結果

問題 No.2319 Friends+
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-30 01:50:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 637 ms / 3,000 ms
コード長 1,713 bytes
コンパイル時間 2,019 ms
コンパイル使用メモリ 209,712 KB
実行使用メモリ 59,520 KB
最終ジャッジ日時 2024-07-06 15:25:38
合計ジャッジ時間 23,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 517 ms
59,392 KB
testcase_03 AC 500 ms
59,520 KB
testcase_04 AC 494 ms
59,392 KB
testcase_05 AC 489 ms
59,392 KB
testcase_06 AC 500 ms
59,392 KB
testcase_07 AC 443 ms
7,680 KB
testcase_08 AC 432 ms
7,680 KB
testcase_09 AC 432 ms
7,680 KB
testcase_10 AC 434 ms
7,680 KB
testcase_11 AC 454 ms
7,680 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 412 ms
7,808 KB
testcase_19 AC 406 ms
7,808 KB
testcase_20 AC 439 ms
7,680 KB
testcase_21 AC 431 ms
7,680 KB
testcase_22 AC 460 ms
7,808 KB
testcase_23 AC 412 ms
7,808 KB
testcase_24 AC 403 ms
7,808 KB
testcase_25 AC 403 ms
7,808 KB
testcase_26 AC 402 ms
7,680 KB
testcase_27 AC 402 ms
7,808 KB
testcase_28 AC 592 ms
7,680 KB
testcase_29 AC 515 ms
7,808 KB
testcase_30 AC 456 ms
7,680 KB
testcase_31 AC 435 ms
7,680 KB
testcase_32 AC 414 ms
7,680 KB
testcase_33 AC 411 ms
7,680 KB
testcase_34 AC 414 ms
7,680 KB
testcase_35 AC 420 ms
7,680 KB
testcase_36 AC 427 ms
7,552 KB
testcase_37 AC 585 ms
28,160 KB
testcase_38 AC 409 ms
7,680 KB
testcase_39 AC 407 ms
7,680 KB
testcase_40 AC 409 ms
7,680 KB
testcase_41 AC 416 ms
7,680 KB
testcase_42 AC 447 ms
7,680 KB
testcase_43 AC 465 ms
7,680 KB
testcase_44 AC 487 ms
7,808 KB
testcase_45 AC 637 ms
28,288 KB
testcase_46 AC 422 ms
24,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;


int main(){

    int N, M, Q, A, B, K;
    cin >> N >> M;
    K = sqrt(M);
    vector<int> P(N), lg;
    vector<bool> large(N);
    for (int i=0; i<N; i++){
        cin >> P[i]; P[i]--;
    }
    vector<vector<int>> E(N), Eg(N);
    for (int i=0; i<M; i++){
        cin >> A >> B; A--; B--;
        if (A == B) continue;
        E[A].push_back(B);
        E[B].push_back(A);
    }

    vector<vector<int>> cnt(N);

    for (int i=0; i<N; i++){
        if (E[i].size() >= K){
            large[i] = 1;
            lg.push_back(i);
        }
    }
    for (auto i : lg){
        cnt[i].resize(N);
        for (auto x : E[i]){
            if (!large[x]) cnt[i][P[x]]++;
            else Eg[i].push_back(x);
        }
    }

    cin >> Q;
    while(Q){
        Q--;
        bool f=0;
        cin >> A >> B; A--; B--;
        if (P[A] == P[B]){
            cout << "No" << endl;
            continue;
        }
        if (!large[A]){
            for (auto x : E[A]){
                if (P[x] == P[B]) f=1;
            }
            if (f){
                for (auto x : E[A]){
                    if (large[x]){
                        cnt[x][P[A]]--;
                        cnt[x][P[B]]++;
                    }
                }
                P[A] = P[B];
                cout << "Yes" << endl;
            }
            else cout << "No" << endl;
        }
        else{
            for (auto x : Eg[A]) if (P[x] == P[B]) f=1;
            if (cnt[A][P[B]] > 0) f=1;
            if (f){
                cout << "Yes" << endl;
                P[A] = P[B];
            }
            else cout << "No" << endl;
        }
    }

    return 0;
}
0