結果

問題 No.2319 Friends+
ユーザー maguroflymagurofly
提出日時 2023-05-27 14:01:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 833 ms / 3,000 ms
コード長 806 bytes
コンパイル時間 1,858 ms
コンパイル使用メモリ 204,308 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-06-07 16:28:10
合計ジャッジ時間 31,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 576 ms
101,248 KB
testcase_03 AC 564 ms
101,120 KB
testcase_04 AC 570 ms
101,168 KB
testcase_05 AC 564 ms
101,248 KB
testcase_06 AC 614 ms
101,248 KB
testcase_07 AC 818 ms
101,120 KB
testcase_08 AC 800 ms
101,120 KB
testcase_09 AC 833 ms
101,120 KB
testcase_10 AC 798 ms
101,248 KB
testcase_11 AC 794 ms
101,120 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 603 ms
101,120 KB
testcase_19 AC 641 ms
101,120 KB
testcase_20 AC 580 ms
101,248 KB
testcase_21 AC 590 ms
101,120 KB
testcase_22 AC 581 ms
101,248 KB
testcase_23 AC 638 ms
101,120 KB
testcase_24 AC 600 ms
101,120 KB
testcase_25 AC 597 ms
101,248 KB
testcase_26 AC 587 ms
101,120 KB
testcase_27 AC 592 ms
101,248 KB
testcase_28 AC 606 ms
101,248 KB
testcase_29 AC 584 ms
101,248 KB
testcase_30 AC 578 ms
101,196 KB
testcase_31 AC 584 ms
101,148 KB
testcase_32 AC 618 ms
101,192 KB
testcase_33 AC 608 ms
101,120 KB
testcase_34 AC 597 ms
101,120 KB
testcase_35 AC 587 ms
101,120 KB
testcase_36 AC 693 ms
101,248 KB
testcase_37 AC 551 ms
101,080 KB
testcase_38 AC 573 ms
101,248 KB
testcase_39 AC 553 ms
101,184 KB
testcase_40 AC 579 ms
101,184 KB
testcase_41 AC 569 ms
101,160 KB
testcase_42 AC 571 ms
101,248 KB
testcase_43 AC 572 ms
101,248 KB
testcase_44 AC 578 ms
101,144 KB
testcase_45 AC 567 ms
101,248 KB
testcase_46 AC 554 ms
101,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int N_MAX = 20000;
int main() {
  int N, M; cin >> N >> M;
  vector<int> world_of(N);
  vector<bitset<N_MAX>> in_world(N);
  for (int i = 0; i < N; i++) {
    cin >> world_of[i]; world_of[i]--;
    in_world[world_of[i]][i] = true;
  }
  vector<bitset<N_MAX>> friend_of(N);
  for (int i = 0; i < M; i++) {
    int A, B; cin >> A >> B; A--; B--;
    friend_of[A][B] = friend_of[B][A] = true;
  }

  int Q;
  cin >> Q;
  for (int t = 0; t < Q; t++) {
    int X, Y; cin >> X >> Y; X--; Y--;
    if (world_of[X] != world_of[Y] && (friend_of[X] & in_world[world_of[Y]]).any()) {
      cout << "Yes\n";
      in_world[world_of[X]][X] = false;
      world_of[X] = world_of[Y];
      in_world[world_of[X]][X] = true;
    } else {
      cout << "No\n";
    }
  }
}
0