結果

問題 No.1111 コード進行
ユーザー xuanjixuanji
提出日時 2020-07-10 22:51:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,189 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 176,132 KB
実行使用メモリ 221,580 KB
最終ジャッジ日時 2024-10-11 10:09:53
合計ジャッジ時間 4,754 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,880 KB
testcase_01 AC 3 ms
6,960 KB
testcase_02 AC 4 ms
6,912 KB
testcase_03 AC 3 ms
7,144 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 4 ms
7,172 KB
testcase_06 AC 5 ms
10,696 KB
testcase_07 AC 5 ms
13,960 KB
testcase_08 AC 6 ms
13,632 KB
testcase_09 AC 4 ms
8,140 KB
testcase_10 AC 7 ms
17,908 KB
testcase_11 AC 5 ms
12,476 KB
testcase_12 AC 6 ms
11,300 KB
testcase_13 AC 5 ms
10,604 KB
testcase_14 AC 9 ms
14,132 KB
testcase_15 AC 6 ms
16,580 KB
testcase_16 AC 5 ms
11,556 KB
testcase_17 AC 7 ms
17,416 KB
testcase_18 AC 6 ms
13,384 KB
testcase_19 AC 3 ms
6,820 KB
testcase_20 AC 4 ms
7,492 KB
testcase_21 AC 6 ms
14,672 KB
testcase_22 AC 7 ms
18,228 KB
testcase_23 AC 5 ms
12,680 KB
testcase_24 AC 5 ms
12,376 KB
testcase_25 AC 8 ms
18,028 KB
testcase_26 AC 9 ms
15,544 KB
testcase_27 AC 3 ms
7,624 KB
testcase_28 AC 39 ms
134,196 KB
testcase_29 AC 37 ms
128,392 KB
testcase_30 AC 54 ms
90,024 KB
testcase_31 AC 9 ms
22,576 KB
testcase_32 AC 103 ms
167,528 KB
testcase_33 AC 77 ms
58,280 KB
testcase_34 AC 31 ms
114,052 KB
testcase_35 AC 81 ms
195,452 KB
testcase_36 AC 38 ms
135,752 KB
testcase_37 AC 37 ms
125,636 KB
testcase_38 AC 64 ms
90,880 KB
testcase_39 AC 138 ms
85,340 KB
testcase_40 AC 154 ms
142,716 KB
testcase_41 AC 51 ms
157,360 KB
testcase_42 AC 37 ms
134,416 KB
testcase_43 AC 112 ms
87,292 KB
testcase_44 AC 22 ms
80,012 KB
testcase_45 AC 36 ms
132,024 KB
testcase_46 AC 99 ms
221,488 KB
testcase_47 AC 99 ms
221,504 KB
testcase_48 AC 102 ms
221,572 KB
testcase_49 AC 97 ms
221,580 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:43:23: warning: iteration 305 invokes undefined behavior [-Waggressive-loop-optimizations]
   43 |         memo[i][j][k] = -1;
      |         ~~~~~~~~~~~~~~^~~~
main.cpp:42:22: note: within this loop
   42 |       for (int k=0; k<=MAX_K; k++) {
      |                     ~^~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

constexpr size_t MAX_N = 305;
constexpr size_t MAX_K = 305;
constexpr size_t NUM_CHORDS = 305;

constexpr int MODULUS = 1000000007;

long long memo[MAX_N][NUM_CHORDS][MAX_K];

vector<set<pair<int,int>>> neighbours(NUM_CHORDS);

int N, M, K;

long long ans(int length, int last, int target) {
  if (length == 1) {
    if (target == 0) return 1;
    return 0;
  }
  if (target < 0) return 0;

  if (memo[length][last][target] != -1) return memo[length][last][target];

  long long ret = 0;
  for (auto const& p : neighbours[last]) {
    auto prev = p.first;
    auto cost = p.second;

    ret += ans(length-1, prev, target-cost);
    ret = ret % MODULUS;
  }

  return memo[length][last][target] = ret;
}

int main() {
  cin >> N >> M >> K;

  for (int i=0; i<=N; i++) {
    for (int j=0; j<=300; j++) {
      for (int k=0; k<=MAX_K; k++) {
        memo[i][j][k] = -1;
      }
    }
  }

  for (int i=0; i<M; i++) {
    int P, Q, C;
    cin >> P >> Q >> C;
    neighbours[Q].insert(make_pair(P, C));
  }

  int ret = 0;
  for (int v=1; v<=300; v++) {
    ret += ans(N, v, K);
    ret = ret % MODULUS;
  }

  cout << ret << endl;

  return 0;
}
0