結果

問題 No.298 話の伝達
ユーザー ぴろずぴろず
提出日時 2015-11-08 18:25:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 791 ms / 5,000 ms
コード長 1,062 bytes
コンパイル時間 2,848 ms
コンパイル使用メモリ 86,668 KB
実行使用メモリ 57,572 KB
最終ジャッジ日時 2024-09-13 14:10:05
合計ジャッジ時間 8,264 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,884 KB
testcase_01 AC 135 ms
54,172 KB
testcase_02 AC 134 ms
53,956 KB
testcase_03 AC 135 ms
53,864 KB
testcase_04 AC 138 ms
54,052 KB
testcase_05 AC 253 ms
56,212 KB
testcase_06 AC 146 ms
53,964 KB
testcase_07 AC 135 ms
54,224 KB
testcase_08 AC 135 ms
54,084 KB
testcase_09 AC 146 ms
54,176 KB
testcase_10 AC 166 ms
56,384 KB
testcase_11 AC 317 ms
56,852 KB
testcase_12 AC 236 ms
56,788 KB
testcase_13 AC 352 ms
57,176 KB
testcase_14 AC 232 ms
56,348 KB
testcase_15 AC 136 ms
54,088 KB
testcase_16 AC 791 ms
57,572 KB
testcase_17 AC 182 ms
56,436 KB
testcase_18 AC 338 ms
57,192 KB
testcase_19 AC 140 ms
54,320 KB
testcase_20 AC 461 ms
57,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no298;

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


public class Main {

	public static void main(String[] args) {
		new Main().solve();
	}

	int n;
	int m;
	ArrayList<Edge>[] g;
	@SuppressWarnings("unchecked")
	public void solve() {
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		m = sc.nextInt();
		g = new ArrayList[n];
		for(int i=0;i<n;i++) {
			g[i] = new ArrayList<>();
		}
		for(int i=0;i<m;i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			double c = sc.nextInt() / 100D;
			g[b].add(new Edge(a,c));
		}
		double ans = 0;
		for(int i=(1<<n-1)+1;i<1<<n;i+=2) {
			double p = 1;
			for(int v=1;v<n;v++) {
				double q = 1;
				for(Edge e:g[v]) {
					int u = e.to;
					if ((i >> u & 1) == 1) {
						q *= (1 - e.p);
					}
				}
				p *= (i >> v & 1) == 0 ? q : (1 - q);
			}
			ans += p;
		}
		System.out.println(ans);
	}

	static class Edge {
		int to;
		double p;
		public Edge(int to,double p) {
			this.to = to;
			this.p = p;
		}
		public String toString() {
			return "[" + to + "," + p + "]";
		}
	}
}
0