結果
問題 | No.30 たこやき工場 |
ユーザー | Kutimoti_T |
提出日時 | 2017-12-18 22:02:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 672 bytes |
コンパイル時間 | 689 ms |
コンパイル使用メモリ | 66,844 KB |
実行使用メモリ | 817,436 KB |
最終ジャッジ日時 | 2024-05-09 12:00:29 |
合計ジャッジ時間 | 5,643 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | 1 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 | 5 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | MLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include <iostream> #include <queue> #include <vector> #define FOR(i,s,e) for(int i = (s);i <= (e);i++) using namespace std; int N; int M; struct edge { int to; int cost; }; vector<edge> V[110]; int dp[110]; int main() { cin >> N; cin >> M; int p,q,r; FOR(i,0,M-1) { cin >> p >> q >> r; V[r].push_back({p,q}); } queue<int> que; que.push(N); dp[N] = 1; while(!que.empty()) { int x = que.front(); que.pop(); int siz = static_cast<int>(V[x].size()); FOR(i,0,siz - 1) { const edge& e = V[x][i]; dp[e.to] += dp[x] * e.cost; que.push(e.to); } if(siz != 0) dp[x] = 0; } FOR(i,1,N -1) { cout << dp[i] << endl; } return 0; }