标签:问题 注意 math memory hid define ati font 概述
题意概述:
现在给出一个N*N的方格纸,有M个格子已经被涂黑了。现在小明也来涂格子,每次等概率地涂格子(包括已经被涂过的),问期望的涂格子次数,使得方格纸每一行每一列都至少有一个格子被涂过。
数据范围:
1 ≤ n ≤ 2·103,0 ≤ m ≤ min(n2, 2·103),1 ≤ ri, ci ≤ n (这是给出的涂过的格子的坐标),
1 #include<stdio.h> 2 #include<string.h> 3 #include<stdbool.h> 4 #include<math.h> 5 #define maxn 2005 6 7 int T,N,M,A,B; 8 bool markc[maxn],markr[maxn]; 9 double f[maxn][maxn]; 10 11 void data_in() 12 { 13 memset(f,0,sizeof(f)); 14 memset(markc,0,sizeof(markc)); 15 memset(markr,0,sizeof(markr)); 16 scanf("%d%d",&N,&M); 17 int x,y; 18 for(int i=1;i<=M;i++){ 19 scanf("%d%d",&x,&y); 20 markr[x]=1,markc[y]=1; 21 } 22 } 23 void work() 24 { 25 A=B=N; 26 for(int i=1;i<=N;i++){ 27 if(markr[i]) A--; 28 if(markc[i]) B--; 29 } 30 f[0][0]=0; 31 for(int i=0;i<=A;i++) 32 for(int j=0;j<=B;j++) if(i!=0||j!=0){ 33 double tmp=1; 34 if(i>=1) tmp+=f[i-1][j]*i*(N-j)/(N*N); 35 if(j>=1) tmp+=f[i][j-1]*(N-i)*j/(N*N); 36 if(i>=1&&j>=1) tmp+=f[i-1][j-1]*i*j/(N*N); 37 f[i][j]=tmp*N*N/(N*N-(N-i)*(N-j)); 38 } 39 printf("%.5lf\n",f[A][B]); 40 } 41 int main() 42 { 43 freopen("test.in","r",stdin); 44 freopen("test.out","w",stdout); 45 scanf("%d",&T); 46 while(T--){ 47 data_in(); 48 work(); 49 } 50 return 0; 51 }
标签:问题 注意 math memory hid define ati font 概述
原文地址:https://www.cnblogs.com/Golden-Elf/p/12081526.html