結果
問題 | No.30 たこやき工場 |
ユーザー | Grenache |
提出日時 | 2016-03-12 19:58:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 106 ms / 5,000 ms |
コード長 | 2,552 bytes |
コンパイル時間 | 3,993 ms |
コンパイル使用メモリ | 79,312 KB |
実行使用メモリ | 51,544 KB |
最終ジャッジ日時 | 2024-06-01 02:59:50 |
合計ジャッジ時間 | 5,890 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 59 ms
50,548 KB |
testcase_01 | AC | 59 ms
50,532 KB |
testcase_02 | AC | 59 ms
50,512 KB |
testcase_03 | AC | 58 ms
50,516 KB |
testcase_04 | AC | 58 ms
50,296 KB |
testcase_05 | AC | 58 ms
50,516 KB |
testcase_06 | AC | 58 ms
50,356 KB |
testcase_07 | AC | 59 ms
50,384 KB |
testcase_08 | AC | 63 ms
50,532 KB |
testcase_09 | AC | 67 ms
50,608 KB |
testcase_10 | AC | 106 ms
51,544 KB |
testcase_11 | AC | 63 ms
50,144 KB |
testcase_12 | AC | 60 ms
50,600 KB |
testcase_13 | AC | 61 ms
50,528 KB |
testcase_14 | AC | 63 ms
50,376 KB |
testcase_15 | AC | 65 ms
50,644 KB |
testcase_16 | AC | 81 ms
51,112 KB |
ソースコード
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); } } }