結果

問題 No.1111 コード進行
ユーザー noritakenoritake
提出日時 2020-07-14 21:56:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,054 bytes
コンパイル時間 1,700 ms
コンパイル使用メモリ 174,172 KB
実行使用メモリ 235,904 KB
最終ジャッジ日時 2024-11-18 21:17:34
合計ジャッジ時間 99,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
124,580 KB
testcase_01 AC 120 ms
235,776 KB
testcase_02 WA -
testcase_03 AC 115 ms
235,648 KB
testcase_04 AC 143 ms
122,752 KB
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,658 ms
123,008 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,789 ms
235,520 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 480 ms
235,648 KB
testcase_18 AC 386 ms
123,136 KB
testcase_19 AC 280 ms
235,520 KB
testcase_20 AC 1,229 ms
124,576 KB
testcase_21 AC 1,810 ms
123,136 KB
testcase_22 AC 704 ms
123,008 KB
testcase_23 TLE -
testcase_24 AC 1,538 ms
123,008 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 201 ms
123,136 KB
testcase_29 AC 889 ms
235,520 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 205 ms
123,008 KB
testcase_35 AC 224 ms
235,520 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 903 ms
235,520 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 1,849 ms
117,760 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<long long> vl;

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

    vi P(M), Q(M), C(M);
    rep(i, M) {
        cin >> P[i] >> Q[i] >> C[i];
        P[i]--; Q[i]--;
    }

    const int MOD = 1000000007;
    const int MAX = 305;

    vector<vector<vi>> dp(MAX, vector<vi>(MAX, vi(MAX)));
    rep(i, M) {
        dp[2][Q[i]][C[i]]++;
    }

    for (int i = 2; i < MAX - 1; i++) {
        for (int j = 0; j < MAX; j++) {
            for (int k = 0; k < MAX; k++) {

                for (int l = 0; l < M; l++) {
                    if (j != P[l]) continue;
                    if (k + C[l] >= MAX) continue;

                    dp[i + 1][Q[l]][k + C[l]] += dp[i][j][k];
                    dp[i + 1][Q[l]][k + C[l]] %= MOD;
                }
            }
        }
    }

    int cnt = 0;
    rep(i, M) {
        cnt += dp[N][i][K];
        cnt %= MOD;
    }
    cout << cnt << endl;
}
0