結果
| 問題 | No.30 たこやき工場 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2016-03-12 19:58:56 | 
| 言語 | Java (openjdk 23) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 106 ms / 5,000 ms | 
| コード長 | 2,552 bytes | 
| コンパイル時間 | 4,898 ms | 
| コンパイル使用メモリ | 78,988 KB | 
| 実行使用メモリ | 51,660 KB | 
| 最終ジャッジ日時 | 2024-12-21 05:25:01 | 
| 合計ジャッジ時間 | 5,576 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 17 | 
ソースコード
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
public class Main_yukicoder30 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Printer pr = new Printer(System.out);
		int n = sc.nextInt();
		int m = sc.nextInt();
		List<List<Pair>> edges = new ArrayList<>();
		for (int i = 0; i < n; i++) {
			edges.add(new ArrayList<>());
		}
		int[] e = new int[n];
		for (int i = 0; i < m; i++) {
			int p = sc.nextInt() - 1;
			int q = sc.nextInt();
			int r = sc.nextInt() - 1;
			edges.get(p).add(new Pair(r, q));
			e[r]++;
		}
		int[] etmp = e.clone();
		int[][] dp = new int[n][n];
		boolean flag = true;
		while (flag) {
			flag = false;
			for (int i = 0; i < n; i++) {
				if (e[i] == 0) {
					for (Pair ee : edges.get(i)) {
						for (int j = 0; j < n; j++) {
							if (j == i) {
								dp[j][ee.a] += ee.b;
							} else {
								dp[j][ee.a] += ee.b * dp[j][i];
							}
						}
						e[ee.a]--;
					}
					e[i]--;
					flag = true;
				}
			}
		}
		for (int i = 0; i < n - 1; i++) {
			if (etmp[i] == 0) {
				pr.println(dp[i][n - 1]);
			} else {
				pr.println(0);
			}
		}
		pr.close();
        sc.close();
    }
	private static class Pair {
		int a;
		int b;
		Pair(int a, int b) {
			this.a = a;
			this.b = b;
		}
	}
	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;
		Iterator<String> it;
		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}
		String next() throws RuntimeException  {
			try {
				if (it == null || !it.hasNext()) {
					it = Arrays.asList(br.readLine().split(" ")).iterator();
				}
				return it.next();
			} catch (IOException e) {
				throw new IllegalStateException();
			}
		}
		int nextInt() throws RuntimeException {
			return Integer.parseInt(next());
		}
		long nextLong() throws RuntimeException {
			return Long.parseLong(next());
		}
		float nextFloat() throws RuntimeException {
			return Float.parseFloat(next());
		}
		double nextDouble() throws RuntimeException {
			return Double.parseDouble(next());
		}
		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new IllegalStateException();
			}
		}
	}
	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
            
            
            
        