結果
問題 | No.30 たこやき工場 |
ユーザー | furon |
提出日時 | 2023-06-01 22:30:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,366 bytes |
コンパイル時間 | 1,407 ms |
コンパイル使用メモリ | 131,536 KB |
実行使用メモリ | 8,704 KB |
最終ジャッジ日時 | 2024-06-08 21:46:25 |
合計ジャッジ時間 | 8,062 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <functional> #include <cmath> #include <string> #include <queue> #include <map> #include <bitset> #include <set> #include <stack> #include <numeric> #include <unordered_map> #include <random> using namespace std; using ll = long long; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; using vb = vector<bool>; using vvb = vector<vb>; using vd = vector<double>; using vs = vector<string>; using pii = pair<int, int>; using pll = pair<ll, ll>; using pdd = pair<double, double>; using vpii = vector<pii>; using vpll = vector<pll>; using vpdd = vector<pdd>; const int inf = (1 << 30) - 1; const ll INF = 1LL << 60; //const int MOD = 1000000007; const int MOD = 998244353; struct Edge { int to; ll cost; }; using Graph = vector<vector<Edge>>; void dfs(int s, Graph& g, ll cost, vl& ans) { if (g[s].size() == 0) { ans[s] += cost; } for (auto& v : g[s]) { dfs(v.to, g, cost * v.cost, ans); } } int main() { int n, m; cin >> n >> m; vi p(m), q(m), r(m); for (int i = 0; i < m; i++) { cin >> p[i] >> q[i] >> r[i]; } vl ans(n + 1, 0); Graph g(n + 1); for (int i = 0; i < m; i++) { g[r[i]].push_back({ p[i], q[i] }); } dfs(n, g, 1, ans); for (int i = 1; i < n; i++) { cout << ans[i] << endl; } return 0; }