結果

問題 No.1111 コード進行
ユーザー recososorecososo
提出日時 2020-07-10 21:56:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 1,453 bytes
コンパイル時間 1,644 ms
コンパイル使用メモリ 175,456 KB
実行使用メモリ 215,232 KB
最終ジャッジ日時 2024-10-11 09:06:02
合計ジャッジ時間 3,945 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 4 ms
7,508 KB
testcase_07 AC 4 ms
7,160 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 4 ms
6,816 KB
testcase_10 AC 5 ms
9,384 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 4 ms
7,488 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 7 ms
9,928 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 5 ms
8,080 KB
testcase_17 AC 4 ms
9,704 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 3 ms
6,820 KB
testcase_20 AC 3 ms
6,820 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 6 ms
11,812 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 4 ms
7,048 KB
testcase_25 AC 7 ms
11,116 KB
testcase_26 AC 5 ms
7,496 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 44 ms
108,696 KB
testcase_29 AC 20 ms
46,332 KB
testcase_30 AC 51 ms
72,772 KB
testcase_31 AC 7 ms
14,848 KB
testcase_32 AC 52 ms
65,152 KB
testcase_33 AC 46 ms
43,464 KB
testcase_34 AC 31 ms
78,720 KB
testcase_35 AC 40 ms
99,924 KB
testcase_36 AC 43 ms
107,356 KB
testcase_37 AC 12 ms
28,176 KB
testcase_38 AC 20 ms
21,492 KB
testcase_39 AC 77 ms
71,808 KB
testcase_40 AC 80 ms
98,296 KB
testcase_41 AC 54 ms
120,144 KB
testcase_42 AC 21 ms
50,088 KB
testcase_43 AC 42 ms
44,120 KB
testcase_44 AC 11 ms
24,832 KB
testcase_45 AC 30 ms
73,472 KB
testcase_46 AC 3 ms
5,248 KB
testcase_47 AC 129 ms
215,232 KB
testcase_48 AC 3 ms
5,248 KB
testcase_49 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define REP(i, n) for (int i = 0; i < (n); ++i)
#define REPR(i, n) for (int i = n - 1; i >= 0; --i)
#define FOR(i, m, n) for (int i = m; i < n; ++i)
#define FORR(i, m, n) for (int i = m; i >= n; --i)
#define ALL(v) (v).begin(),(v).end()
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
const ll INF=1LL<<60;
const int inf=(1<<30)-1;
const int mod=1e9+7;
int dx[8]={1,0,-1,0,-1,-1,1,1};
int dy[8]={0,1,0,-1,-1,1,-1,1};
int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n,m,k;cin >> n >> m >> k;
    vector<int> p(m),q(m),c(m);
    vector<vector<pair<int,int>>> a(300);
    REP(i,m){
        cin >> p[i] >> q[i] >> c[i];
        p[i]--,q[i]--;
        a[p[i]].push_back({q[i],c[i]});
    }
    ll dp[n][k+1][300]={};
    REP(i,300){
        dp[0][0][i]=1;
    }
    REP(i,n-1){
        REP(j,k+1){
            REP(l,300){
                if(!dp[i][j][l]){
                    continue;
                }
                for(auto v:a[l]){
                    if(j+v.second<=k){
                        (dp[i+1][j+v.second][v.first]+=dp[i][j][l])%=mod;
                    }
                }
            }
        }
    }
    ll ans=0;
    REP(i,300){
        (ans+=dp[n-1][k][i])%=mod;
    }
    cout << ans << endl;
}
0