結果

問題 No.30 たこやき工場
ユーザー GrenacheGrenache
提出日時 2016-03-12 19:58:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 94 ms / 5,000 ms
コード長 2,552 bytes
コンパイル時間 3,743 ms
コンパイル使用メモリ 75,616 KB
実行使用メモリ 52,068 KB
最終ジャッジ日時 2023-08-23 05:17:44
合計ジャッジ時間 5,583 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,300 KB
testcase_01 AC 43 ms
49,272 KB
testcase_02 AC 44 ms
49,320 KB
testcase_03 AC 44 ms
49,268 KB
testcase_04 AC 44 ms
49,280 KB
testcase_05 AC 45 ms
49,496 KB
testcase_06 AC 45 ms
49,320 KB
testcase_07 AC 46 ms
49,504 KB
testcase_08 AC 51 ms
49,556 KB
testcase_09 AC 51 ms
49,356 KB
testcase_10 AC 94 ms
52,068 KB
testcase_11 AC 50 ms
49,460 KB
testcase_12 AC 45 ms
49,404 KB
testcase_13 AC 45 ms
47,260 KB
testcase_14 AC 52 ms
49,428 KB
testcase_15 AC 51 ms
49,572 KB
testcase_16 AC 59 ms
49,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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);
		}
	}
}
0