結果

問題 No.1111 コード進行
ユーザー fastmathfastmath
提出日時 2020-07-10 21:49:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,627 bytes
コンパイル時間 1,791 ms
コンパイル使用メモリ 169,296 KB
実行使用メモリ 112,896 KB
最終ジャッジ日時 2024-10-11 08:50:17
合計ジャッジ時間 5,238 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 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 4 ms
5,248 KB
testcase_06 AC 6 ms
6,400 KB
testcase_07 AC 8 ms
8,320 KB
testcase_08 AC 7 ms
7,936 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 10 ms
9,984 KB
testcase_11 AC 7 ms
7,168 KB
testcase_12 AC 7 ms
6,656 KB
testcase_13 AC 5 ms
6,016 KB
testcase_14 AC 8 ms
8,064 KB
testcase_15 AC 9 ms
9,344 KB
testcase_16 AC 6 ms
6,784 KB
testcase_17 AC 10 ms
9,984 KB
testcase_18 AC 7 ms
7,680 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 4 ms
5,248 KB
testcase_21 AC 7 ms
8,576 KB
testcase_22 AC 10 ms
9,472 KB
testcase_23 AC 7 ms
7,680 KB
testcase_24 AC 6 ms
6,656 KB
testcase_25 AC 10 ms
10,112 KB
testcase_26 AC 10 ms
9,088 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 87 ms
68,608 KB
testcase_29 AC 74 ms
65,664 KB
testcase_30 AC 64 ms
46,080 KB
testcase_31 AC 13 ms
12,288 KB
testcase_32 AC 107 ms
85,248 KB
testcase_33 AC 48 ms
30,464 KB
testcase_34 AC 71 ms
57,984 KB
testcase_35 AC 118 ms
99,456 KB
testcase_36 AC 88 ms
69,632 KB
testcase_37 AC 69 ms
64,512 KB
testcase_38 AC 55 ms
47,104 KB
testcase_39 AC 74 ms
44,160 KB
testcase_40 AC 105 ms
73,344 KB
testcase_41 AC 102 ms
80,256 KB
testcase_42 AC 79 ms
68,736 KB
testcase_43 AC 63 ms
45,312 KB
testcase_44 AC 45 ms
40,704 KB
testcase_45 AC 80 ms
67,456 KB
testcase_46 AC 113 ms
112,128 KB
testcase_47 AC 153 ms
112,512 KB
testcase_48 AC 116 ms
112,896 KB
testcase_49 AC 114 ms
112,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define ii pair <int, int>
#define app push_back
#define all(a) a.begin(), a.end()
#define bp __builtin_popcountll
#define ll long long
#define mp make_pair
#define f first
#define s second
#define Time (double)clock()/CLOCKS_PER_SEC
#define debug(x) std::cout << #x << ": " << x << '\n';

const int N = 307, MOD = 1000 * 1000 * 1000 + 7;
int dp[N][N][N];
int w[N][N];

vector <int> g[N];

signed main() {
    #ifdef HOME
    freopen("input.txt", "r", stdin);
    #else
    #define endl '\n'
    ios_base::sync_with_stdio(0); cin.tie(0);
    #endif
    
    int n, m, k;
    cin >> n >> m >> k;

    for (int i = 0; i < m; ++i) {
        int u, v, c;
        cin >> u >> v >> c;
        w[u][v] = c;
        g[u].app(v);
    }   

    auto add = [&](int &a, int b) {
        a += b;
        if (a >= MOD)
            a -= MOD;
    };   

    for (int i = 1; i <= 300; ++i)
        dp[1][i][0] = 1;

    for (int i = 1; i <= n; ++i) {
        for (int u = 1; u <= 300; ++u) {
            for (int sum = 0; sum <= k; ++sum) {

                int &x = dp[i][u][sum];
                x %= MOD;
                if (x == 0)
                    continue;

                //cout << i << ' ' << u << ' ' << sum << " : " << dp[i][u][sum] << endl;

                for (int v : g[u]) {
                    if (sum + w[u][v] <= k) {
                        add(dp[i+1][v][sum+w[u][v]], x);
                    }            
                }   
            }
        }   
    }
    
    int ans = 0;
    for (int i = 1; i <= 300; ++i)
        add(ans, dp[n][i][k]);
    cout << ans << endl;
}
0