結果
問題 | No.30 たこやき工場 |
ユーザー | fine |
提出日時 | 2017-02-27 20:50:15 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 654 bytes |
コンパイル時間 | 1,825 ms |
コンパイル使用メモリ | 171,696 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-21 05:25:54 |
合計ジャッジ時間 | 2,160 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll, int> P; int n, m; int ans[100]; bool par[100]; vector<P> g[100]; ll dfs(int cur) { if (ans[cur] != 0) return ans[cur]; ll res = 0; for (P p : g[cur]) { res += dfs(p.second) * p.first; } ans[cur] = res; return res; } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> n >> m; for (int i = 0; i < m; i++) { int p, r; ll q; cin >> p >> q >> r; p--; r--; g[p].emplace_back(q, r); par[r] = true; } ans[n - 1] = 1; for (int i = 0; i < n - 1; i++) { if (par[i]) cout << 0 << endl; else cout << dfs(i) << endl; } return 0; }