結果

問題 No.1340 おーじ君をさがせ
ユーザー Nzt3Nzt3
提出日時 2021-01-15 23:21:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 700 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 181,528 KB
実行使用メモリ 33,408 KB
最終ジャッジ日時 2024-05-05 03:02:50
合計ジャッジ時間 16,731 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 22 ms
5,632 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 20 ms
5,504 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 6 ms
5,376 KB
testcase_21 AC 255 ms
13,312 KB
testcase_22 AC 672 ms
22,528 KB
testcase_23 AC 243 ms
12,928 KB
testcase_24 AC 1,364 ms
32,896 KB
testcase_25 AC 25 ms
5,376 KB
testcase_26 AC 17 ms
5,376 KB
testcase_27 AC 12 ms
5,376 KB
testcase_28 AC 42 ms
6,400 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 288 ms
14,080 KB
testcase_31 AC 1,360 ms
33,408 KB
testcase_32 AC 7 ms
5,376 KB
testcase_33 AC 6 ms
5,376 KB
testcase_34 AC 144 ms
10,368 KB
testcase_35 AC 145 ms
10,368 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 AC 5 ms
5,376 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 622 ms
23,936 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 1,074 ms
27,648 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 3 ms
5,376 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 2 ms
5,376 KB
testcase_59 WA -
testcase_60 AC 2 ms
5,376 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h> 
using namespace std;
int main(){
  int64_t n,m,t;
  cin>>n>>m>>t;
  vector<vector<int>>V(n);
  for(int i=0,a,b;i<m;i++){
    cin>>a>>b;
    V[a].push_back(b);
  }
  vector<vector<set<int>>>oji(n,vector<set<int>>(63));
  for(int i=0;i<n;i++){
    for(auto j:V[i])oji[i][0].insert(j);
  }
  for(int i=1;i<63;i++){
    for(int j=0;j<n;j++){
      for(auto k:oji[j][i-1]){
        for(auto l:oji[k][i-1]){
          oji[j][i].insert(l);
        }
      }
    }
  }
  set<int>ima,tugi;
  ima.insert(0);
  for(int i=0;i<61;i++){
    if(t==0)break;
    tugi.clear();
    for(auto j:ima){
      for(auto l:oji[j][i])tugi.insert(l);
    }
    ima=tugi;
  }
  cout<<ima.size()<<'\n';
}
0