zoukankan      html  css  js  c++  java
  • 【CF398B】B. Painting The Wall(期望)

    B. Painting The Wall
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    User ainta decided to paint a wall. The wall consists of n2 tiles, that are arranged in an n × n table. Some tiles are painted, and the others are not. As he wants to paint it beautifully, he will follow the rules below.

    1. Firstly user ainta looks at the wall. If there is at least one painted cell on each row and at least one painted cell on each column, he stops coloring. Otherwise, he goes to step 2.
    2. User ainta choose any tile on the wall with uniform probability.
    3. If the tile he has chosen is not painted, he paints the tile. Otherwise, he ignores it.
    4. Then he takes a rest for one minute even if he doesn't paint the tile. And then ainta goes to step 1.

    However ainta is worried if it would take too much time to finish this work. So he wants to calculate the expected time needed to paint the wall by the method above. Help him find the expected time. You can assume that choosing and painting any tile consumes no time at all.

    Input

    The first line contains two integers n and m (1 ≤ n ≤ 2·103; 0 ≤ m ≤ min(n2, 2·104)) — the size of the wall and the number of painted cells.

    Next m lines goes, each contains two integers ri and ci (1 ≤ ri, ci ≤ n) — the position of the painted cell. It is guaranteed that the positions are all distinct. Consider the rows of the table are numbered from 1 to n. Consider the columns of the table are numbered from 1 to n.

    Output

    In a single line print the expected time to paint the wall in minutes. Your answer will be considered correct if it has at most 10 - 4 absolute or relative error.

    Examples
    input
    5 2
    2 3
    4 1
    output
    11.7669491886
    input
    2 2
    1 1
    1 2
    output
    2.0000000000
    input
    1 1
    1 1
    output
    0.0000000000
    
    

    
    

     1 #include<cstdio>
     2 #include<cstdlib>
     3 #include<cstring>
     4 #include<iostream>
     5 #include<algorithm>
     6 using namespace std;
     7 #define Maxn 2010
     8 
     9 double f[Maxn][Maxn];
    10 bool h[Maxn],l[Maxn];
    11 
    12 int main()
    13 {
    14     int n,m;
    15     scanf("%d%d",&n,&m);
    16     for(int i=1;i<=n;i++) h[i]=l[i]=0;
    17     for(int i=1;i<=m;i++)
    18     {
    19         int x,y;
    20         scanf("%d%d",&x,&y);
    21         h[x]=1;l[y]=1;
    22     }
    23     int hh=0,ll=0;
    24     for(int i=1;i<=n;i++) if(h[i]) hh++;
    25     for(int i=1;i<=n;i++) if(l[i]) ll++;
    26     for(int i=n;i>=hh;i--)
    27      for(int j=n;j>=ll;j--)
    28      {
    29          if(i==n&&j==n) f[i][j]=0;
    30          else
    31          {
    32              double pi=1.0*i/n,pj=1.0*j/n;
    33              f[i][j]=(pi*pj+(f[i+1][j]+1)*(1-pi)*pj+(f[i][j+1]+1)*pi*(1-pj)+(f[i+1][j+1]+1)*(1-pi)*(1-pj))/(1.0-pi*pj);
    34          }
    35      }
    36     printf("%.10lf
    ",f[hh][ll]);
    37     return 0;
    38 }
    View Code
  • 相关阅读:
    Qt 错误汇集贴
    转:Qt编写串口通信程序全程图文讲解
    转:QT 的点点滴滴 错误总结
    转:Qt项目中遇到的一些小问题汇总
    转:AM335X 启动流程
    基于Xilinx Zynq的计算处理平台
    基于英伟达Jetson TX1的GPU处理平台
    基于6U VPX的 SRIO 接口, 和PCIe 接口的msata 固态存储卡
    国芯网 邀请国产芯片原厂入驻商城
    295-Xilinx Kintex-7 X7K325T的半高PCIe x4双路万兆光纤收发卡
  • 原文地址:https://www.cnblogs.com/Konjakmoyu/p/6745353.html
Copyright © 2011-2022 走看看