結果

問題 No.1111 コード進行
ユーザー trineutrontrineutron
提出日時 2019-11-04 12:27:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,198 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 179,008 KB
実行使用メモリ 224,936 KB
最終ジャッジ日時 2024-10-01 16:48:39
合計ジャッジ時間 35,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
12,072 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 20 ms
6,016 KB
testcase_06 AC 78 ms
7,808 KB
testcase_07 AC 83 ms
7,552 KB
testcase_08 AC 25 ms
5,248 KB
testcase_09 AC 32 ms
6,144 KB
testcase_10 AC 142 ms
9,728 KB
testcase_11 AC 24 ms
5,248 KB
testcase_12 AC 79 ms
7,808 KB
testcase_13 AC 56 ms
6,656 KB
testcase_14 AC 135 ms
10,112 KB
testcase_15 AC 25 ms
5,248 KB
testcase_16 AC 92 ms
8,448 KB
testcase_17 AC 145 ms
10,112 KB
testcase_18 AC 25 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 27 ms
5,504 KB
testcase_21 AC 10 ms
5,248 KB
testcase_22 AC 182 ms
12,288 KB
testcase_23 AC 62 ms
6,400 KB
testcase_24 AC 73 ms
7,168 KB
testcase_25 AC 173 ms
11,520 KB
testcase_26 AC 98 ms
7,808 KB
testcase_27 AC 12 ms
5,248 KB
testcase_28 TLE -
testcase_29 AC 1,144 ms
48,128 KB
testcase_30 AC 1,608 ms
74,240 KB
testcase_31 AC 252 ms
15,232 KB
testcase_32 AC 1,637 ms
67,328 KB
testcase_33 AC 940 ms
44,288 KB
testcase_34 AC 1,752 ms
80,512 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 551 ms
29,824 KB
testcase_38 AC 407 ms
22,784 KB
testcase_39 AC 1,612 ms
73,088 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 1,243 ms
51,968 KB
testcase_43 AC 1,013 ms
45,696 KB
testcase_44 AC 454 ms
26,240 KB
testcase_45 AC 1,711 ms
75,904 KB
testcase_46 AC 119 ms
8,576 KB
testcase_47 TLE -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    const long mod = 1000000007;
    int n, m, k;
    cin >> n >> m >> k;
    vector<int> p(m), q(m), c(m);
    vector<vector<int>> cost(300, vector<int>(300, -1));
    for (int i = 0; i < m; i++) {
        cin >> p.at(i) >> q.at(i) >> c.at(i);
        p.at(i)--; q.at(i)--;
        cost.at(p.at(i)).at(q.at(i)) = c.at(i);
    }
    vector<vector<vector<long>>> dp(n - 1, vector<vector<long>>(300, vector<long>(k + 1)));
    for (int i = 0; i < m; i++) {
        if (c.at(i) <= k) dp.at(0).at(q.at(i)).at(c.at(i))++;
    }
    for (int i = 1; i < n - 1; i++) {
        for (int j = 0; j < 300; j++) {
            for (int l = 0; l < 300; l++) {
                for (int comp = cost.at(j).at(l); comp <= k; comp++) {
                    if (cost.at(j).at(l) >= 0) {
                        dp.at(i).at(l).at(comp) += dp.at(i - 1).at(j).at(comp - cost.at(j).at(l));
                        dp.at(i).at(l).at(comp) %= mod;
                    }
                }
            }
        }
    }
    long ans = 0;
    for (int i = 0; i < 300; i++) {
        ans += dp.at(n - 2).at(i).at(k);
        ans %= mod;
    }
    cout << ans << endl;
}
0