結果

問題 No.2316 Freight Train
ユーザー twooimp2twooimp2
提出日時 2024-02-21 17:04:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 6,364 ms
コンパイル使用メモリ 301,176 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 04:16:00
合計ジャッジ時間 15,368 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 279 ms
6,816 KB
testcase_04 AC 148 ms
6,816 KB
testcase_05 AC 105 ms
6,820 KB
testcase_06 AC 38 ms
6,820 KB
testcase_07 AC 258 ms
6,816 KB
testcase_08 AC 147 ms
6,816 KB
testcase_09 AC 205 ms
6,820 KB
testcase_10 AC 229 ms
6,816 KB
testcase_11 AC 187 ms
6,816 KB
testcase_12 AC 236 ms
6,820 KB
testcase_13 AC 277 ms
6,816 KB
testcase_14 AC 284 ms
6,820 KB
testcase_15 AC 279 ms
6,820 KB
testcase_16 AC 279 ms
6,816 KB
testcase_17 AC 289 ms
6,816 KB
testcase_18 AC 292 ms
6,820 KB
testcase_19 AC 277 ms
6,816 KB
testcase_20 AC 272 ms
6,816 KB
testcase_21 AC 280 ms
6,820 KB
testcase_22 AC 287 ms
6,820 KB
testcase_23 AC 273 ms
6,816 KB
testcase_24 AC 281 ms
6,816 KB
testcase_25 AC 273 ms
6,816 KB
testcase_26 AC 266 ms
6,820 KB
testcase_27 AC 246 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;

void IO(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
}

int main(){
  IO();
  ll n,q;
  cin>>n>>q;
  dsu uf(n);
  for(ll i=0;i<n;i++){
    ll p;
    cin>>p;
    if(p==-1){
      continue;
    }
    p--;
    uf.merge(i,p);
  }
  while(q--){
    ll a,b;
    cin>>a>>b;
    a--;
    b--;
    if(uf.same(a,b)){
      cout<<"Yes"<<endl;
    }else{
      cout<<"No"<<endl;
    }
  }
}
0