結果

問題 No.1111 コード進行
ユーザー DriceDrice
提出日時 2020-07-10 23:01:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 32,896 KB
実行使用メモリ 217,344 KB
最終ジャッジ日時 2024-10-11 15:51:06
合計ジャッジ時間 2,936 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 5 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 4 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 7 ms
6,144 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 6 ms
6,016 KB
testcase_29 AC 17 ms
16,128 KB
testcase_30 AC 16 ms
12,032 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 26 ms
17,408 KB
testcase_33 AC 22 ms
11,264 KB
testcase_34 AC 6 ms
5,504 KB
testcase_35 AC 9 ms
8,576 KB
testcase_36 AC 148 ms
105,600 KB
testcase_37 AC 100 ms
87,680 KB
testcase_38 AC 51 ms
43,904 KB
testcase_39 AC 45 ms
25,216 KB
testcase_40 AC 113 ms
84,096 KB
testcase_41 AC 28 ms
25,216 KB
testcase_42 AC 111 ms
93,952 KB
testcase_43 AC 70 ms
52,864 KB
testcase_44 AC 33 ms
29,952 KB
testcase_45 AC 57 ms
48,256 KB
testcase_46 AC 18 ms
17,920 KB
testcase_47 AC 82 ms
18,560 KB
testcase_48 AC 225 ms
217,344 KB
testcase_49 AC 167 ms
161,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
struct Element{
    int a,b;
    int c;
};
long long f[305][305][305];
Element e[305];
const long long mod = 1e9+7;

int main(){
    int n,m,k;
    scanf("%d%d%d",&n,&m,&k);
    for(int i = 1; i <= m; i++){
        int p,q,c;
        scanf("%d%d%d",&p,&q,&c);
        e[i].a = p, e[i].b = q, e[i].c = c;
        f[2][q][c] = (f[2][q][c]+1)%mod;
    }
    for(int i = 2; i <= n-1; i++){
        for(int j = 0; j <= k; j++){
            for(int t = 1; t <= m; t++){
                int nextK = j+e[t].c;
                if(nextK<=k){ 
                    //printf("from %d %d %d to %d %d %d\n",i,e[t].a,j,i+1,e[t].b,nextK);
                    f[i+1][e[t].b][nextK] += f[i][e[t].a][j];
                    if(f[i+1][e[t].b][nextK]>=mod) f[i+1][e[t].b][nextK] -= mod;
                }
            }
        }
    }
    long long ans = 0;
    for(int i = 1; i <= 300; i++) ans = (ans+f[n][i][k])%mod;
    printf("%lld\n",ans);
    return 0;
}
0