結果
問題 | No.30 たこやき工場 |
ユーザー | xuzijian629 |
提出日時 | 2018-10-31 08:36:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,356 bytes |
コンパイル時間 | 2,263 ms |
コンパイル使用メモリ | 213,996 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-19 11:20:35 |
合計ジャッジ時間 | 2,815 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = int64_t; using vi = vector<i64>; using vvi = vector<vi>; using ii = pair<int, i64>; int main() { int n, m; cin >> n >> m; vector<set<ii>> ins(n), outs(n); for (int i = 0; i < m; i++) { int a, w, b; cin >> a >> w >> b; a--; b--; ins[b].insert(ii(a, w)); outs[a].insert(ii(b, w)); } vi needs(n), visited(n); needs.back() = 1; while (1) { int change = 0; for (int i = 0; i < n; i++) { if (visited[i]) continue; if (outs[i].empty()) { cout << "Found empty: " << i << endl; visited[i] = 1; // if (needs[i] == 0) continue; for (auto& e: ins[i]) { int k = e.first; cout << "node " << k << " is going to " << i << " with cost " << e.second << endl; needs[k] += needs[i] * e.second; cout << "need[k] has updated: " << needs[k] << endl; outs[k].erase(ii(i, e.second)); } change = 1; } } if (!change) break; } for (int i = 0; i < n - 1; i++) { // cout << needs[i] << endl; cout << (ins[i].empty() ? needs[i] : 0) << endl; } }