結果
問題 | No.1111 コード進行 |
ユーザー | trineutron |
提出日時 | 2019-11-01 02:53:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,164 bytes |
コンパイル時間 | 2,043 ms |
コンパイル使用メモリ | 180,792 KB |
実行使用メモリ | 224,672 KB |
最終ジャッジ日時 | 2024-10-01 16:47:53 |
合計ジャッジ時間 | 15,543 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
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 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | AC | 45 ms
8,448 KB |
testcase_47 | TLE | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
ソースコード
#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<bool>> ac(300, vector<bool>(300)); for (int i = 0; i < m; i++) { cin >> p.at(i) >> q.at(i) >> c.at(i); p.at(i)--; q.at(i)--; ac.at(p.at(i)).at(q.at(i)) = true; } 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 comp = c.at(j); comp <= k; comp++) { for (int l = 0; l < 300; l++) { if (ac.at(j).at(l)) { dp.at(i).at(l).at(comp) += dp.at(i - 1).at(j).at(comp - c.at(j)); 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; }