码迷,mamicode.com
首页 > 其他好文 > 详细

hdu6243

时间:2019-07-18 09:30:49      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:map   oid   efi   --   std   amp   div   span   ring   

hdu6243
结论题,每个的概率是(n-1)/n,然后乘以总数n,结果就是 n-1

#include<iostream>
#include<cstdio>
#include<queue>
#include<algorithm>
#include<cmath>
#include<ctime>
#include<set>
#include<map>
#include<stack>
#include<cstring>
#define inf 2147483647
#define ls rt<<1
#define rs rt<<1|1
#define lson ls,nl,mid,l,r
#define rson rs,mid+1,nr,l,r
#define N 500010
#define For(i,a,b) for(int i=a;i<=b;i++)
#define p(a) putchar(a)
#define g() getchar()

using namespace std;
int n,T,cnt;
int f[N];
void in(int &x){
    int y=1;
    char c=g();x=0;
    while(c<0||c>9){
        if(c==-)y=-1;
        c=g();
    }
    while(c<=9&&c>=0){
        x=(x<<1)+(x<<3)+c-0;c=g();
    }
    x*=y;
}
void o(int x){
    if(x<0){
        p(-);
        x=-x;
    }
    if(x>9)o(x/10);
    p(x%10+0);
}
int main(){
    in(T);
    while(T--){
        in(n);
        //o(n-1);
        cout<<"Case #"<<(++cnt)<<": "<<n-1<<".0000000000"<<endl;
    }
    return 0;
}

 

hdu6243

标签:map   oid   efi   --   std   amp   div   span   ring   

原文地址:https://www.cnblogs.com/war1111/p/11204960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!