結果
問題 | No.30 たこやき工場 |
ユーザー | tottoripaper |
提出日時 | 2015-03-24 19:43:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,104 bytes |
コンパイル時間 | 427 ms |
コンパイル使用メモリ | 50,660 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-01 02:57:15 |
合計ジャッジ時間 | 1,115 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:17:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%d %d", &N, &M); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:21:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 21 | scanf("%d %d %d", &p, &q, &r); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
// Wrongri-La Shower #include <cstdio> #include <algorithm> #include <cstring> #include <utility> #include <queue> typedef long long ll; typedef std::pair<int,int> P; int N, M; std::vector<P> G[101]; int count[101][101], degree[101], enter[101]; int main(){ scanf("%d %d", &N, &M); for(int i=0;i<M;i++){ int p, q, r; scanf("%d %d %d", &p, &q, &r); G[p].emplace_back(r, q); ++degree[r]; } std::queue<int> queue; for(int i=1;i<N;i++){ if(degree[i] == 0){ queue.push(i); count[i][i] = 1; } } while(!queue.empty()){ int u = queue.front(); queue.pop(); for(const auto& e : G[u]){ if(enter[e.first] >= degree[e.first]){continue;} for(int i=1;i<=N;i++){ count[e.first][i] += count[u][i] * e.second; } ++enter[e.first]; if(enter[e.first] == degree[e.first]){ queue.push(e.first); } } } for(int i=1;i<N;i++){ printf("%d\n", count[N][i]); } }