結果

問題 No.30 たこやき工場
ユーザー scachescache
提出日時 2014-11-25 16:38:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 236 ms / 5,000 ms
コード長 1,153 bytes
コンパイル時間 4,457 ms
コンパイル使用メモリ 77,416 KB
実行使用メモリ 57,456 KB
最終ジャッジ日時 2024-12-21 05:18:24
合計ジャッジ時間 7,542 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,068 KB
testcase_01 AC 140 ms
53,892 KB
testcase_02 AC 144 ms
53,720 KB
testcase_03 AC 147 ms
54,040 KB
testcase_04 AC 146 ms
53,816 KB
testcase_05 AC 143 ms
53,856 KB
testcase_06 AC 154 ms
53,840 KB
testcase_07 AC 149 ms
53,972 KB
testcase_08 AC 183 ms
54,000 KB
testcase_09 AC 203 ms
54,072 KB
testcase_10 AC 236 ms
57,456 KB
testcase_11 AC 190 ms
54,392 KB
testcase_12 AC 151 ms
54,072 KB
testcase_13 AC 165 ms
53,724 KB
testcase_14 AC 204 ms
54,128 KB
testcase_15 AC 196 ms
54,332 KB
testcase_16 AC 210 ms
54,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Scanner;

public class Main30 {


	public static void main(String[] args) {
		Main30 p = new Main30();
	}

	boolean[] isVisited;
	long[][] need;
	
	public Main30() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		isVisited = new boolean[n+1];
		need = new long[n+1][n+1];
		
		for(int i=0;i<m;i++){
			int p = sc.nextInt();
			int q = sc.nextInt();
			int r = sc.nextInt();
			
			need[r][p] = q;
		}
		
		solve(need);
		
	}

	public void solve(long[][] need){
		int n = need.length-1;
		rec(n);
		for(int i=1;i<n;i++)
			System.out.println(need[n][i]);

	}	
	
	private void rec(int cur) {
		if(isVisited[cur])
			return;
		
		boolean isTerm = true;
		for(int i=1;i<need[cur].length;i++){
			if(need[cur][i]==0)
				continue;
			
			isTerm = false;
			rec(i);
			long curr = need[cur][i];
			need[cur][i] = 0;
			for(int j=1;j<need[i].length;j++){
				need[cur][j] += curr*need[i][j];
			}
		}
		
		if(isTerm)
			need[cur][cur] = 1;
		
		isVisited[cur] = true;		
	}

}
0