結果

問題 No.30 たこやき工場
ユーザー 37zigen37zigen
提出日時 2020-03-30 15:38:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 226 ms / 5,000 ms
コード長 1,271 bytes
コンパイル時間 3,137 ms
コンパイル使用メモリ 78,876 KB
実行使用メモリ 57,560 KB
最終ジャッジ日時 2024-06-01 03:04:40
合計ジャッジ時間 5,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,200 KB
testcase_01 AC 137 ms
54,164 KB
testcase_02 AC 139 ms
54,084 KB
testcase_03 AC 141 ms
53,940 KB
testcase_04 AC 140 ms
54,228 KB
testcase_05 AC 140 ms
54,136 KB
testcase_06 AC 146 ms
53,936 KB
testcase_07 AC 140 ms
54,240 KB
testcase_08 AC 183 ms
54,504 KB
testcase_09 AC 190 ms
54,424 KB
testcase_10 AC 226 ms
57,560 KB
testcase_11 AC 180 ms
54,372 KB
testcase_12 AC 142 ms
54,156 KB
testcase_13 AC 157 ms
54,448 KB
testcase_14 AC 193 ms
54,424 KB
testcase_15 AC 194 ms
54,500 KB
testcase_16 AC 196 ms
54,440 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];
		int[] outdeg=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));
			outdeg[src]++;
			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) {
				System.out.println(dp[i]);
			}else {
				System.out.println(0);
			}
		}
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0