結果

問題 No.2316 Freight Train
ユーザー a01sa01toa01sa01to
提出日時 2024-02-14 00:34:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 206,980 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-28 18:41:51
合計ジャッジ時間 15,601 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 406 ms
6,820 KB
testcase_04 AC 222 ms
6,820 KB
testcase_05 AC 159 ms
6,816 KB
testcase_06 AC 52 ms
6,816 KB
testcase_07 AC 360 ms
6,820 KB
testcase_08 AC 248 ms
6,820 KB
testcase_09 AC 305 ms
6,816 KB
testcase_10 AC 370 ms
6,816 KB
testcase_11 AC 288 ms
6,816 KB
testcase_12 AC 347 ms
6,816 KB
testcase_13 AC 425 ms
6,816 KB
testcase_14 AC 411 ms
6,816 KB
testcase_15 AC 420 ms
6,820 KB
testcase_16 AC 410 ms
6,820 KB
testcase_17 AC 423 ms
6,816 KB
testcase_18 AC 412 ms
6,820 KB
testcase_19 AC 423 ms
6,816 KB
testcase_20 AC 415 ms
6,820 KB
testcase_21 AC 418 ms
6,816 KB
testcase_22 AC 414 ms
6,816 KB
testcase_23 AC 382 ms
6,816 KB
testcase_24 AC 414 ms
6,820 KB
testcase_25 AC 385 ms
6,816 KB
testcase_26 AC 400 ms
6,820 KB
testcase_27 AC 294 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
  #define _GLIBCXX_DEBUG
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

#include <atcoder/dsu>

int main() {
  int n, q;
  cin >> n >> q;
  atcoder::dsu d(n);
  rep(i, n) {
    int p;
    cin >> p;
    if (p == -1) continue;
    d.merge(i, p - 1);
  }
  while (q--) {
    int a, b;
    cin >> a >> b;
    --a, --b;
    cout << (d.same(a, b) ? "Yes" : "No") << endl;
  }
  return 0;
}
0