結果
問題 | No.1111 コード進行 |
ユーザー | trineutron |
提出日時 | 2019-10-13 03:07:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,463 bytes |
コンパイル時間 | 1,943 ms |
コンパイル使用メモリ | 184,084 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 15:26:12 |
合計ジャッジ時間 | 9,078 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
6,816 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 | RE | - |
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 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { const long mod = 1000000007; int n, m, k; cin >> n >> m >> k; assert(2 <= n && n <= 100); assert(1 <= m && m <= 100); assert(0 <= k && k <= 100); vector<int> p(m), q(m), c(m); vector<pair<int, int>> check; for (int i = 0; i < m; i++) { cin >> p.at(i) >> q.at(i) >> c.at(i); assert(1 <= p.at(i) && p.at(i) <= 100); assert(1 <= q.at(i) && q.at(i) <= 100); assert(p.at(i) != q.at(i)); assert(0 <= c.at(i) && c.at(i) <= 100); check.emplace_back(p.at(i), q.at(i)); } sort(check.begin(), check.end()); for (int i = 0; i < m - 1; i++) { assert(check.at(i) != check.at(i + 1)); } for (int i = 0; i < m; i++) { p.at(i)--; q.at(i)--; } vector<vector<vector<long>>> dp(n - 1, vector<vector<long>>(100, 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 < m; j++) { for (int comp = c.at(j); comp <= k; comp++) { dp.at(i).at(q.at(j)).at(comp) += dp.at(i - 1).at(p.at(j)).at(comp - c.at(j)); dp.at(i).at(q.at(j)).at(comp) %= mod; } } } long ans = 0; for (int i = 0; i < 100; i++) { ans += dp.at(n - 2).at(i).at(k); ans %= mod; } cout << ans << endl; }