結果

問題 No.30 たこやき工場
ユーザー 37zigen37zigen
提出日時 2020-03-30 15:52:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 270 ms / 5,000 ms
コード長 1,216 bytes
コンパイル時間 2,772 ms
コンパイル使用メモリ 82,736 KB
実行使用メモリ 45,928 KB
最終ジャッジ日時 2024-12-21 05:30:42
合計ジャッジ時間 6,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
41,364 KB
testcase_01 AC 147 ms
41,656 KB
testcase_02 AC 153 ms
41,264 KB
testcase_03 AC 158 ms
41,396 KB
testcase_04 AC 141 ms
40,364 KB
testcase_05 AC 154 ms
41,384 KB
testcase_06 AC 163 ms
41,748 KB
testcase_07 AC 165 ms
41,512 KB
testcase_08 AC 208 ms
42,076 KB
testcase_09 AC 229 ms
42,456 KB
testcase_10 AC 270 ms
45,928 KB
testcase_11 AC 213 ms
42,008 KB
testcase_12 AC 158 ms
41,464 KB
testcase_13 AC 176 ms
41,800 KB
testcase_14 AC 217 ms
42,332 KB
testcase_15 AC 217 ms
42,508 KB
testcase_16 AC 223 ms
42,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

class Edge{
	int src,dst,need;
	
	public Edge(int src,int dst,int cost) {
		this.src=src;
		this.dst=dst;
		this.need=cost;
	}
}

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	void dfs(int cur,int par,ArrayList<Edge>[] g,long[] dp) {
		if(dp[cur]>0)return;
		for(Edge e:g[cur]) {
			if(e.dst==par)continue;
			dfs(e.dst,cur,g,dp);
			dp[cur]+=(long)dp[e.dst]*e.need;
		}
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int M=sc.nextInt();
		ArrayList<Edge>[] g=new ArrayList[N];
		for(int i=0;i<g.length;++i)g[i]=new ArrayList<>();
		long[] dp=new long[N];
		int[] indeg=new int[N];
		dp[N-1]=1;	
		for(int i=0;i<M;++i) {
			int src=sc.nextInt();
			int need=sc.nextInt();
			int dst=sc.nextInt();
			--src;--dst;
			g[src].add(new Edge(src,dst,need));
			indeg[dst]++;
		}
		for(int i=0;i<N;++i) dfs(i,-1,g,dp);
		for(int i=0;i<N-1;++i) if(indeg[i]>0) dp[i]=0;
		Arrays.stream(Arrays.copyOfRange(dp, 0, N-1)).forEach(System.out::println);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0