結果

問題 No.2319 Friends+
ユーザー SSRSSSRS
提出日時 2023-05-26 22:36:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 815 ms / 3,000 ms
コード長 775 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 172,436 KB
実行使用メモリ 102,844 KB
最終ジャッジ日時 2024-06-07 07:59:08
合計ジャッジ時間 30,077 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 574 ms
102,688 KB
testcase_03 AC 577 ms
102,656 KB
testcase_04 AC 575 ms
102,656 KB
testcase_05 AC 581 ms
102,696 KB
testcase_06 AC 573 ms
102,784 KB
testcase_07 AC 779 ms
102,720 KB
testcase_08 AC 788 ms
102,800 KB
testcase_09 AC 815 ms
102,656 KB
testcase_10 AC 795 ms
102,784 KB
testcase_11 AC 795 ms
102,656 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 3 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 625 ms
102,656 KB
testcase_19 AC 641 ms
102,688 KB
testcase_20 AC 584 ms
102,784 KB
testcase_21 AC 588 ms
102,784 KB
testcase_22 AC 591 ms
102,656 KB
testcase_23 AC 652 ms
102,656 KB
testcase_24 AC 621 ms
102,656 KB
testcase_25 AC 602 ms
102,844 KB
testcase_26 AC 606 ms
102,784 KB
testcase_27 AC 597 ms
102,720 KB
testcase_28 AC 596 ms
102,804 KB
testcase_29 AC 597 ms
102,660 KB
testcase_30 AC 593 ms
102,656 KB
testcase_31 AC 597 ms
102,800 KB
testcase_32 AC 589 ms
102,708 KB
testcase_33 AC 581 ms
102,656 KB
testcase_34 AC 583 ms
102,636 KB
testcase_35 AC 575 ms
102,776 KB
testcase_36 AC 675 ms
102,784 KB
testcase_37 AC 552 ms
102,724 KB
testcase_38 AC 565 ms
102,624 KB
testcase_39 AC 565 ms
102,704 KB
testcase_40 AC 563 ms
102,632 KB
testcase_41 AC 575 ms
102,656 KB
testcase_42 AC 580 ms
102,784 KB
testcase_43 AC 575 ms
102,624 KB
testcase_44 AC 570 ms
102,656 KB
testcase_45 AC 578 ms
102,656 KB
testcase_46 AC 559 ms
102,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  vector<int> P(N);
  for (int i = 0; i < N; i++){
    cin >> P[i];
    P[i]--;
  }
  vector<int> A(M), B(M);
  for (int i = 0; i < M; i++){
    cin >> A[i] >> B[i];
    A[i]--;
    B[i]--;
  }
  vector<bitset<20000>> W(N);
  for (int i = 0; i < N; i++){
    W[P[i]].set(i);
  }
  vector<bitset<20000>> F(N);
  for (int i = 0; i < M; i++){
    F[A[i]].set(B[i]);
    F[B[i]].set(A[i]);
  }
  int Q;
  cin >> Q;
  for (int i = 0; i < Q; i++){
    int X, Y;
    cin >> X >> Y;
    X--;
    Y--;
    if (P[X] != P[Y] && (W[P[Y]] & F[X]).any()){
      cout << "Yes" << endl;
      W[P[X]].reset(X);
      P[X] = P[Y];
      W[P[X]].set(X);
    } else {
      cout << "No" << endl;
    }
  }
}
0