結果

問題 No.1340 おーじ君をさがせ
ユーザー SSRSSSRS
提出日時 2021-01-15 22:20:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,323 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 177,228 KB
実行使用メモリ 24,856 KB
最終ジャッジ日時 2024-05-05 02:48:05
合計ジャッジ時間 18,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,168 KB
testcase_01 AC 6 ms
6,016 KB
testcase_02 AC 7 ms
6,400 KB
testcase_03 AC 7 ms
6,528 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 7 ms
6,400 KB
testcase_06 AC 8 ms
7,040 KB
testcase_07 AC 7 ms
6,912 KB
testcase_08 AC 5 ms
6,016 KB
testcase_09 AC 6 ms
6,272 KB
testcase_10 AC 22 ms
7,936 KB
testcase_11 AC 20 ms
6,272 KB
testcase_12 AC 32 ms
12,232 KB
testcase_13 AC 19 ms
6,272 KB
testcase_14 AC 27 ms
6,272 KB
testcase_15 AC 24 ms
6,272 KB
testcase_16 AC 26 ms
10,088 KB
testcase_17 AC 23 ms
6,144 KB
testcase_18 AC 21 ms
6,272 KB
testcase_19 AC 12 ms
6,272 KB
testcase_20 AC 17 ms
8,528 KB
testcase_21 AC 868 ms
17,112 KB
testcase_22 AC 603 ms
21,376 KB
testcase_23 AC 916 ms
16,708 KB
testcase_24 AC 304 ms
24,712 KB
testcase_25 AC 880 ms
10,972 KB
testcase_26 AC 561 ms
10,112 KB
testcase_27 AC 424 ms
9,772 KB
testcase_28 AC 829 ms
11,944 KB
testcase_29 AC 527 ms
8,064 KB
testcase_30 AC 897 ms
17,372 KB
testcase_31 AC 987 ms
24,856 KB
testcase_32 AC 45 ms
6,528 KB
testcase_33 AC 43 ms
6,528 KB
testcase_34 AC 42 ms
6,528 KB
testcase_35 AC 517 ms
15,272 KB
testcase_36 AC 6 ms
6,400 KB
testcase_37 AC 897 ms
6,528 KB
testcase_38 AC 921 ms
6,528 KB
testcase_39 AC 835 ms
23,112 KB
testcase_40 AC 841 ms
23,164 KB
testcase_41 AC 837 ms
23,032 KB
testcase_42 AC 6 ms
6,016 KB
testcase_43 AC 7 ms
6,144 KB
testcase_44 AC 7 ms
6,272 KB
testcase_45 AC 7 ms
6,016 KB
testcase_46 AC 282 ms
24,576 KB
testcase_47 AC 282 ms
24,448 KB
testcase_48 AC 284 ms
24,572 KB
testcase_49 AC 54 ms
23,168 KB
testcase_50 AC 54 ms
23,172 KB
testcase_51 AC 55 ms
23,168 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 AC 8 ms
6,912 KB
testcase_57 AC 8 ms
6,944 KB
testcase_58 AC 8 ms
6,656 KB
testcase_59 AC 61 ms
24,696 KB
testcase_60 AC 6 ms
6,144 KB
testcase_61 AC 65 ms
24,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int MAX = 40000;
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++){
      string S;
      for (int j = 0; j <= MAX; j++){
        if (dp[j][i]){
          S += '1';
        } else {
          S += '0';
        }
      }
      int d = 1;
      while (1){
        string s1 = S.substr(MAX + 1 - d, d);
        bool ok = true;
        for (int i = 2; i <= 100; i++){
          string s2 = S.substr(MAX + 1 - d * i, d);
          if (s1 != s2){
            ok = false;
            break;
          }
        }
        if (ok){
          break;
        }
        d++;
      }
      if (dp[MAX / d * d - d + T % d][i]){
        ans++;
      }
    }
  }
  cout << ans << endl;
}
0