CF605E.Intergalaxy Trips
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The scientists have recently discovered wormholes — objects in space that allow to travel very long distances between galaxies and star systems.
The scientists know that there are n galaxies within reach. You are in the galaxy number 1 and you need to get to the galaxy number n . To get from galaxy i to galaxy j , you need to fly onto a wormhole (i,j) and in exactly one galaxy day you will find yourself in galaxy j .
Unfortunately, the required wormhole is not always available. Every galaxy day they disappear and appear at random. However, the state of wormholes does not change within one galaxy day. A wormhole from galaxy i to galaxy j exists during each galaxy day taken separately with probability pij . You can always find out what wormholes exist at the given moment. At each moment you can either travel to another galaxy through one of wormholes that exist at this moment or you can simply wait for one galaxy day to see which wormholes will lead from your current position at the next day.
Your task is to find the expected value of time needed to travel from galaxy 1 to galaxy n , if you act in the optimal way. It is guaranteed that this expected value exists.
输入格式
The first line of the input contains a single integer n ( 1<=n<=1000 ) — the number of galaxies within reach.
Then follows a matrix of n rows and n columns. Each element pij represents the probability that there is a wormhole from galaxy i to galaxy j . All the probabilities are given in percents and are integers. It is guaranteed that all the elements on the main diagonal are equal to 100 .
输出格式
Print a single real value — the expected value of the time needed to travel from galaxy 1 to galaxy n if one acts in an optimal way. Your answer will be considered correct if its absolute or relative error does not exceed 10−6 .
Namely: let's assume that your answer is a , and the answer of the jury is b . The checker program will consider your answer correct, if .
输入输出样例
输入#1
3 100 50 50 0 100 80 0 0 100
输出#1
1.750000000000000
输入#2
2 100 30 40 100
输出#2
3.333333333333333
说明/提示
In the second sample the wormhole from galaxy 1 to galaxy 2 appears every day with probability equal to 0.3 . The expected value of days one needs to wait before this event occurs is .