結果

問題 No.2316 Freight Train
ユーザー akasinnakasinn
提出日時 2023-05-26 22:05:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 2,165 ms
コンパイル使用メモリ 176,332 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-07 06:58:34
合計ジャッジ時間 16,302 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 648 ms
12,928 KB
testcase_04 AC 299 ms
8,192 KB
testcase_05 AC 234 ms
8,192 KB
testcase_06 AC 61 ms
5,376 KB
testcase_07 AC 403 ms
5,760 KB
testcase_08 AC 423 ms
13,440 KB
testcase_09 AC 415 ms
9,728 KB
testcase_10 AC 425 ms
8,320 KB
testcase_11 AC 454 ms
12,416 KB
testcase_12 AC 504 ms
11,648 KB
testcase_13 AC 613 ms
13,312 KB
testcase_14 AC 613 ms
13,312 KB
testcase_15 AC 605 ms
13,312 KB
testcase_16 AC 629 ms
13,312 KB
testcase_17 AC 609 ms
13,312 KB
testcase_18 AC 627 ms
13,312 KB
testcase_19 AC 617 ms
13,312 KB
testcase_20 AC 599 ms
13,312 KB
testcase_21 AC 623 ms
13,312 KB
testcase_22 AC 611 ms
13,312 KB
testcase_23 AC 496 ms
13,312 KB
testcase_24 AC 527 ms
13,440 KB
testcase_25 AC 416 ms
5,376 KB
testcase_26 AC 402 ms
5,376 KB
testcase_27 AC 298 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//yukicoder390C
#include<bits/stdc++.h>
using namespace std;
typedef int64_t ll;

int main(){
  int n,q; cin>>n>>q;
  map<int,int> Mp;//前ー後
  vector<int> Head(0);//先頭の番号
  for(int i=1;i<=n;i++){
    int p; cin>>p;
    if(p==-1){
      Head.push_back(i);
    }else{
      Mp[p]=i;
    }
  }
  vector<int> Belong(n+1,0);//先頭の番号を記録
  for(int head:Head){
    int h=head;
    Belong.at(h)=head;
    while(Mp.count(h)){
      h=Mp[h];
      Belong.at(h)=head;
    }
  }
  while(q--){
    int a,b; cin>>a>>b;
    if(Belong.at(a)==Belong.at(b)){
      cout<<"Yes"<<endl;
    }else{
      cout<<"No"<<endl;
    }
    
  }
  return 0;
}
0