結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
54,024 KB
testcase_01 AC 153 ms
53,760 KB
testcase_02 AC 154 ms
53,876 KB
testcase_03 AC 165 ms
53,852 KB
testcase_04 AC 161 ms
53,736 KB
testcase_05 AC 159 ms
53,968 KB
testcase_06 AC 167 ms
54,368 KB
testcase_07 AC 163 ms
54,208 KB
testcase_08 AC 215 ms
54,268 KB
testcase_09 AC 216 ms
54,272 KB
testcase_10 AC 261 ms
57,324 KB
testcase_11 AC 210 ms
54,220 KB
testcase_12 AC 169 ms
54,128 KB
testcase_13 AC 172 ms
54,124 KB
testcase_14 AC 214 ms
54,200 KB
testcase_15 AC 220 ms
54,280 KB
testcase_16 AC 226 ms
54,148 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