結果
問題 | No.30 たこやき工場 |
ユーザー | ttkkggww |
提出日時 | 2022-03-21 19:41:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 1,044 bytes |
コンパイル時間 | 4,576 ms |
コンパイル使用メモリ | 269,412 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 10:11:54 |
合計ジャッジ時間 | 5,621 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 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 | 3 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 | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 3 ms
6,820 KB |
testcase_16 | AC | 3 ms
6,816 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; using ll = long long; int n; int q; using P = pair<int,int>; vector<vector<P>> G; void solve(){ vector<int> tropical; { vector<int> jisu(n); for(int i = 0;i<n;i++){ for(auto &[to,cost]:G[i]){ jisu[to]++; } } queue<int> Q; for(int i = 0;i<n;i++){ if(jisu[i]==0){ Q.push(i); } } while(Q.size()){ int idx = Q.front(); tropical.push_back(idx); Q.pop(); for(auto &[to,cost]:G[idx]){ jisu[to]--; if(jisu[to]==0){ Q.push(to); } } } } vector<unsigned long long> ans(n); ans[n-1] = 1; for(auto &i:tropical){ for(auto &[to,cost]:G[i]){ ans[to] += ans[i]*cost; } if(G[i].size()){ ans[i] = 0; } } for(int i = 0;i<n-1;i++){ cout<<ans[i]<<endl; } } signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cin >> n >> q; G = vector<vector<P>>(n); for(int i = 0;i<q;i++){ int a,b,c; cin >> a >> b >> c; a--; c--; G[c].push_back(P(a,b)); } solve(); }