結果

問題 No.2316 Freight Train
ユーザー momomomo
提出日時 2023-06-02 21:18:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 71,288 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 22:05:11
合計ジャッジ時間 12,310 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 425 ms
5,376 KB
testcase_04 AC 232 ms
5,376 KB
testcase_05 AC 168 ms
5,376 KB
testcase_06 AC 56 ms
5,376 KB
testcase_07 AC 368 ms
5,376 KB
testcase_08 AC 248 ms
5,376 KB
testcase_09 AC 325 ms
5,376 KB
testcase_10 AC 349 ms
5,376 KB
testcase_11 AC 301 ms
5,376 KB
testcase_12 AC 367 ms
5,376 KB
testcase_13 AC 439 ms
5,376 KB
testcase_14 AC 437 ms
5,376 KB
testcase_15 AC 439 ms
5,376 KB
testcase_16 AC 429 ms
5,376 KB
testcase_17 AC 441 ms
5,376 KB
testcase_18 AC 447 ms
5,376 KB
testcase_19 AC 452 ms
5,376 KB
testcase_20 AC 440 ms
5,376 KB
testcase_21 AC 439 ms
5,376 KB
testcase_22 AC 430 ms
5,376 KB
testcase_23 AC 404 ms
5,376 KB
testcase_24 AC 437 ms
5,376 KB
testcase_25 AC 410 ms
5,376 KB
testcase_26 AC 405 ms
5,376 KB
testcase_27 AC 305 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int n, q;
  cin >> n >> q;

  vector<int> p(n + 1);
  for (int i = 1; i <= n; ++i) {
    cin >> p[i];
  }

  auto f = [&](int k) {
    int t = k;
    while (p[t] > 0) {
      t = p[t];
    }
    while (p[k] > 0) {
      int k2 = k;
      k = p[k];
      p[k2] = t;
    }
    return t;
  };

  while (q--) {
    int a, b;
    cin >> a >> b;

    cout << (f(a) == f(b)? "Yes": "No") << '\n';
  }
}
0