結果
問題 | No.298 話の伝達 |
ユーザー | Grenache |
提出日時 | 2015-11-09 10:55:04 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,250 ms / 5,000 ms |
コード長 | 1,756 bytes |
コンパイル時間 | 3,502 ms |
コンパイル使用メモリ | 77,940 KB |
実行使用メモリ | 57,948 KB |
最終ジャッジ日時 | 2024-09-13 14:14:23 |
合計ジャッジ時間 | 10,331 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
54,276 KB |
testcase_01 | AC | 136 ms
54,284 KB |
testcase_02 | AC | 138 ms
54,244 KB |
testcase_03 | AC | 138 ms
53,752 KB |
testcase_04 | AC | 138 ms
54,456 KB |
testcase_05 | AC | 345 ms
57,692 KB |
testcase_06 | AC | 148 ms
53,976 KB |
testcase_07 | AC | 137 ms
54,324 KB |
testcase_08 | AC | 137 ms
53,840 KB |
testcase_09 | AC | 150 ms
54,040 KB |
testcase_10 | AC | 201 ms
57,400 KB |
testcase_11 | AC | 412 ms
57,948 KB |
testcase_12 | AC | 250 ms
57,108 KB |
testcase_13 | AC | 364 ms
57,064 KB |
testcase_14 | AC | 304 ms
57,540 KB |
testcase_15 | AC | 136 ms
54,352 KB |
testcase_16 | AC | 1,250 ms
57,880 KB |
testcase_17 | AC | 195 ms
56,528 KB |
testcase_18 | AC | 361 ms
57,536 KB |
testcase_19 | AC | 138 ms
53,988 KB |
testcase_20 | AC | 693 ms
57,136 KB |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main_yukicoder298_1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); List<List<Edge>> edges = new ArrayList<List<Edge>>(); for (int i = 0; i < n; i++) { edges.add(new ArrayList<Edge>()); } for (int i = 0; i < m; i++) { int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); edges.get(b).add(new Edge(a, b, c)); } int bit = 0, mask = 0; bit |= 0x1 << 0; mask |= 0x1 << 0; bit |= 0x1 << n - 1; mask |= 0x1 << n - 1; double ret = 0; for (int i = 0; i < 0x1 << n; i++) { if ((i & mask) != bit) { continue; } boolean[] yuki = new boolean[n]; for (int j = 0; j < n; j++) { if ((i & 0x1 << j) != 0) { yuki[j] = true; } } double tmp = 1.0; for (int j = 1; j < n; j++) { double tmp2 = 1.0; for (Edge from : edges.get(j)) { if (yuki[from.a]) { tmp2 *= (double)(100 - from.c) / 100; } } if (yuki[j]) { tmp *= 1.0 - tmp2; } else { tmp *= tmp2; } } ret += tmp; } System.out.printf("%.7f\n", ret); sc.close(); } private static class Edge { int a; // int b; int c; Edge(int a, int b, int c) { this.a = a; // this.b = b; this.c = c; } } }