結果

問題 No.30 たこやき工場
ユーザー Kutimoti_TKutimoti_T
提出日時 2017-12-18 22:08:03
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 697 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 66,204 KB
実行使用メモリ 817,424 KB
最終ジャッジ日時 2024-05-09 12:00:50
合計ジャッジ時間 4,689 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 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 1 ms
5,376 KB
testcase_07 AC 1 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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |                 scanf("%d %d %d",&p,&q,&r);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <queue>
#include <vector>
#include <cstdio>
#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)
	{
		scanf("%d %d %d",&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)
	{
		printf("%d\n",dp[i]);
	}

	return 0;

}
0