CF57D.Journey

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Stewie the Rabbit explores a new parallel universe. This two dimensional universe has the shape of a rectangular grid, containing nn lines and mm columns. The universe is very small: one cell of the grid can only contain one particle. Each particle in this universe is either static or dynamic. Each static particle always remains in one and the same position. Due to unintelligible gravitation laws no two static particles in the parallel universe can be present in one column or row, and they also can't be present in the diagonally adjacent cells. A dynamic particle appears in a random empty cell, randomly chooses the destination cell (destination cell may coincide with the start cell, see the samples) and moves there along the shortest path through the cells, unoccupied by the static particles. All empty cells have the same probability of being selected as the beginning or end of the path. Having reached the destination cell, the particle disappears. Only one dynamic particle can exist at one moment of time. This particle can move from a cell to a cell if they have an adjacent side, and this transition takes exactly one galactic second. Stewie got interested in what is the average lifespan of one particle in the given universe.

输入格式

The first line contains two space-separated integers: n,mn,m ( 2<=n,m<=10002<=n,m<=1000 ) which represent the sizes of the universe. The next nn lines containing mm symbols each describe the universe without dynamic particles — the jj -th symbol of the ii -th line equals to 'X' if the cell is occupied by a static particle, and to '.' if it is empty. It is guaranteed that the described universe satisfies the properties described above, that is no two static particles can be in one column or in one row, besides, they can't be positioned in the diagonally adjacent cells.

输出格式

You have to print on a single line a single number which is the average life span of a particle with an accuracy of at least 6 decimal places.

The answer will be accepted if it is within 10610^{-6} of absolute or relative error from the correct answer.

输入输出样例

  • 输入#1

    2 2
    ..
    .X
    

    输出#1

    0.888888888889
    
  • 输入#2

    3 3
    ...
    .X.
    ...
    

    输出#2

    2.000000000000
    
首页