結果

問題 No.1340 おーじ君をさがせ
ユーザー shinchanshinchan
提出日時 2021-01-16 00:51:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,092 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 210,836 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-05-05 03:12:38
合計ジャッジ時間 11,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,272 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,760 KB
testcase_03 AC 4 ms
5,632 KB
testcase_04 AC 5 ms
6,144 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 9 ms
6,144 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 16 ms
9,600 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 6 ms
5,504 KB
testcase_15 AC 6 ms
5,504 KB
testcase_16 AC 13 ms
8,064 KB
testcase_17 AC 7 ms
5,632 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 7 ms
6,940 KB
testcase_21 AC 390 ms
11,008 KB
testcase_22 AC 266 ms
13,568 KB
testcase_23 AC 400 ms
10,880 KB
testcase_24 AC 127 ms
15,488 KB
testcase_25 AC 397 ms
7,552 KB
testcase_26 AC 255 ms
7,040 KB
testcase_27 AC 187 ms
6,784 KB
testcase_28 AC 381 ms
8,192 KB
testcase_29 AC 233 ms
6,912 KB
testcase_30 AC 404 ms
11,264 KB
testcase_31 AC 644 ms
18,176 KB
testcase_32 AC 20 ms
5,760 KB
testcase_33 AC 15 ms
5,376 KB
testcase_34 AC 14 ms
5,376 KB
testcase_35 AC 336 ms
11,776 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 397 ms
5,376 KB
testcase_38 AC 608 ms
5,760 KB
testcase_39 AC 534 ms
17,280 KB
testcase_40 AC 354 ms
11,264 KB
testcase_41 AC 335 ms
11,520 KB
testcase_42 AC 3 ms
5,376 KB
testcase_43 AC 4 ms
5,504 KB
testcase_44 AC 4 ms
5,376 KB
testcase_45 AC 4 ms
5,376 KB
testcase_46 AC 180 ms
17,920 KB
testcase_47 AC 122 ms
15,360 KB
testcase_48 AC 180 ms
17,920 KB
testcase_49 AC 17 ms
11,264 KB
testcase_50 AC 27 ms
17,024 KB
testcase_51 AC 16 ms
11,264 KB
testcase_52 WA -
testcase_53 AC 13 ms
6,912 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 4 ms
6,144 KB
testcase_57 AC 4 ms
6,144 KB
testcase_58 AC 4 ms
5,376 KB
testcase_59 AC 23 ms
15,488 KB
testcase_60 AC 4 ms
5,632 KB
testcase_61 AC 25 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  random_device rnd;
  mt19937 mt(rnd());
  int MAX;
  if (mt() % 2 == 1){
    MAX = 20000;
  } else {
    MAX = 30000;
  }
  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