結果

問題 No.298 話の伝達
ユーザー cielciel
提出日時 2015-11-09 21:14:09
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 340 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-09-13 14:16:28
合計ジャッジ時間 24,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
26,496 KB
testcase_01 AC 96 ms
12,288 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 93 ms
12,288 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 3,665 ms
14,720 KB
testcase_06 AC 98 ms
12,160 KB
testcase_07 AC 90 ms
12,160 KB
testcase_08 AC 91 ms
12,032 KB
testcase_09 AC 98 ms
12,160 KB
testcase_10 AC 176 ms
13,568 KB
testcase_11 AC 4,276 ms
14,592 KB
testcase_12 AC 1,988 ms
14,080 KB
testcase_13 AC 4,697 ms
14,976 KB
testcase_14 AC 2,138 ms
13,824 KB
testcase_15 AC 89 ms
12,288 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
N,M=gets.split.map(&:to_i)
G=Hash.new{|h,k|h[k]=[]}
$<.each{|e|
	a,b,c=e.split.map(&:to_i)
	G[b]<<[a,c/100.0]
}
(p 0;exit)if N==1	
r=0
(1<<(N-2)).times{|i|
	a=[0]+[1]*(N-1)
	N.times{|j|
		G[j].each{|x,y|a[j]*=1-y if x==0||x==N-1||i[x-1]==1}
	}
	r0=1
	N.times{|j|
		r0*=j==0||j==N-1||i[j-1]==1 ? 1-a[j] : a[j]
	}
	r+=r0
}
p r
0