bzoj2698: 染色

Posted thy_asdf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj2698: 染色相关的知识,希望对你有一定的参考价值。

传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=2698

思路:

令xi=1,col=white    =0,col=black E[X]=E[Σxi]=ΣE[xi] 因为只要覆盖一次就算覆盖,所以直接算不太方便 考虑每个点m次不被覆盖的概率 就是一次不被覆盖的概率的m次方
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
const int maxn=1000010;
using namespace std;
int n,m,S,T;double p[maxn],all,cnt[maxn],ans;
 
double get(int a,int l,int r)
    return 1.0*(a-l+1+a-r+1)*(r-l+1)/2;

double qpow(double a,int b)
    double res=1.0;
    for (;b;b>>=1,a=a*a) if (b&1) res=res*a;
    return res;

 
int main()
    scanf("%d%d%d%d",&n,&m,&S,&T);
    all=1.0*(n-T+1+n-S+1)*(T-S+1)/2;
    for (int i=S+1;i<=n;i++)
        int mins=S,maxs=min(i-1,T);
        cnt[i]+=get(i-1,mins,maxs);
    
    for (int i=1;i<=n-S;i++)
        int mins=S,maxs=min(n-i,T);
        cnt[i]+=get(n-i,mins,maxs);
    
    for (int i=1;i<=n;i++)
        ans+=1-qpow(cnt[i]/all,m);
    printf("%.3f\\n",ans);
    return 0;



以上是关于bzoj2698: 染色的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ 2243 染色

bzoj千题计划233:bzoj 1304: [CQOI2009]叶子的染色

bzoj4808: 马 & bzoj3175: [Tjoi2013]攻击装置 (黑白染色+最小割)

bzoj 2243: [SDOI2011]染色

[BZOJ2638] 黑白染色

bzoj4033: [HAOI2015]树上染色