結果

問題 No.1340 おーじ君をさがせ
ユーザー SSRSSSRS
提出日時 2021-01-15 22:08:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 991 bytes
コンパイル時間 1,599 ms
コンパイル使用メモリ 175,504 KB
実行使用メモリ 28,388 KB
最終ジャッジ日時 2024-05-05 02:43:36
合計ジャッジ時間 19,349 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,980 KB
testcase_01 AC 6 ms
6,784 KB
testcase_02 AC 5 ms
7,168 KB
testcase_03 AC 5 ms
7,296 KB
testcase_04 AC 8 ms
7,840 KB
testcase_05 AC 6 ms
7,168 KB
testcase_06 AC 7 ms
7,716 KB
testcase_07 AC 7 ms
7,424 KB
testcase_08 AC 5 ms
6,784 KB
testcase_09 AC 5 ms
6,784 KB
testcase_10 AC 21 ms
9,028 KB
testcase_11 AC 10 ms
6,912 KB
testcase_12 AC 27 ms
13,832 KB
testcase_13 AC 9 ms
6,784 KB
testcase_14 AC 13 ms
6,784 KB
testcase_15 AC 12 ms
6,784 KB
testcase_16 AC 21 ms
11,520 KB
testcase_17 AC 14 ms
6,784 KB
testcase_18 AC 10 ms
6,784 KB
testcase_19 AC 9 ms
6,784 KB
testcase_20 AC 16 ms
9,748 KB
testcase_21 AC 972 ms
19,328 KB
testcase_22 AC 662 ms
24,444 KB
testcase_23 AC 1,029 ms
19,200 KB
testcase_24 AC 309 ms
28,216 KB
testcase_25 AC 984 ms
12,288 KB
testcase_26 AC 636 ms
11,348 KB
testcase_27 AC 465 ms
10,988 KB
testcase_28 AC 933 ms
13,420 KB
testcase_29 AC 607 ms
8,724 KB
testcase_30 AC 997 ms
19,868 KB
testcase_31 AC 1,093 ms
28,256 KB
testcase_32 AC 31 ms
7,040 KB
testcase_33 AC 31 ms
7,168 KB
testcase_34 AC 29 ms
7,168 KB
testcase_35 AC 556 ms
17,392 KB
testcase_36 AC 6 ms
6,784 KB
testcase_37 AC 1,030 ms
7,296 KB
testcase_38 AC 1,037 ms
7,168 KB
testcase_39 AC 996 ms
26,880 KB
testcase_40 AC 973 ms
27,000 KB
testcase_41 AC 966 ms
27,256 KB
testcase_42 AC 8 ms
6,784 KB
testcase_43 AC 7 ms
6,784 KB
testcase_44 AC 6 ms
6,784 KB
testcase_45 AC 7 ms
6,784 KB
testcase_46 AC 302 ms
28,136 KB
testcase_47 AC 309 ms
28,132 KB
testcase_48 AC 302 ms
28,136 KB
testcase_49 AC 52 ms
26,920 KB
testcase_50 AC 53 ms
26,920 KB
testcase_51 AC 52 ms
27,044 KB
testcase_52 WA -
testcase_53 AC 22 ms
9,344 KB
testcase_54 AC 22 ms
9,472 KB
testcase_55 AC 202 ms
17,276 KB
testcase_56 AC 8 ms
7,808 KB
testcase_57 AC 8 ms
7,840 KB
testcase_58 AC 7 ms
7,424 KB
testcase_59 AC 57 ms
28,388 KB
testcase_60 AC 7 ms
6,912 KB
testcase_61 AC 59 ms
28,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int MAX = 50000;
int main(){
  int N, M;
  long long T;
  cin >> N >> M >> T;
  vector<vector<int>> E(N);
  for (int i = 0; i < M; i++){
    int a, b;
    cin >> a >> b;
    E[a].push_back(b);
  }
  vector<vector<bool>> dp(MAX + 1, vector<bool>(N, false));
  dp[0][0] = true;
  vector<vector<int>> p(N);
  for (int i = 0; i < MAX; i++){
    for (int j = 0; j < N; j++){
      if (dp[i][j]){
        p[j].push_back(i);
        for (int k : E[j]){
          dp[i + 1][k] = true;
        }
      }
    }
  }
  int ans = 0;
  if (T <= MAX){
    for (int i = 0; i < N; i++){
      if (dp[T][i]){
        ans++;
      }
    }    
  } else {
    for (int i = 0; i < N; i++){
      if (p[i].size() >= 2){
        int a = p[i][p[i].size() - 2];
        int b = p[i][p[i].size() - 1];
        int d = b - a;
        if (b + d >= MAX){
          if (T % d == a % d){
            ans++;
          }
        }
      }
    }
  }
  cout << ans << endl;
}
0