我是靠谱客的博主 喜悦衬衫,最近开发中收集的这篇文章主要介绍【BZOJ1011】【HNOI2008】遥远的行星 误差分析,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目大意

  给你 n,b ,还有一个数列 a

  对于每个i fi=bij=1ajaiij

  绝对误差不超过 5% 就算对。

   0.01b0.05,n105   

题解

  我好像在以前的UR做过一道用误差来搞事情的题:【UER#7】天路

  这题网上很多代码算出来的答案误差太大了。比如说 n=105,b=0.35,a1=an=107, 其他的是 0 。这些代码会给出fn=1212121212.121212,但实际上 fn=1000010000.1

  这道题的正确做法也是对于每一个 i j分段,只不过不是分成 1 段,而是分成好几段。对于同一段内的j满足 1ij1<1.05×11j2 ,这样取 j1 代替组内的 j 来计算误差就不会超过5%了。(其实也可以让组内误差 <1.050.95 <script type="math/tex" id="MathJax-Element-32"><frac{1.05}{0.95}</script>)。

  时间复杂度: O(n)

代码

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cstdlib>
#include<ctime>
#include<utility>
#include<cmath>
#include<functional>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
void sort(int &a,int &b)
{
    if(a>b)
        swap(a,b);
}
void open(const char *s)
{
#ifndef ONLINE_JUDGE
    char str[100];
    sprintf(str,"%s.in",s);
    freopen(str,"r",stdin);
    sprintf(str,"%s.out",s);
    freopen(str,"w",stdout);
#endif
}
int rd()
{
    int s=0,c;
    while((c=getchar())<'0'||c>'9');
    do
    {
        s=s*10+c-'0';
    }
    while((c=getchar())>='0'&&c<='9');
    return s;
}
int upmin(int &a,int b)
{
    if(b<a)
    {
        a=b;
        return 1;
    }
    return 0;
}
int upmax(int &a,int b)
{
    if(b>a)
    {
        a=b;
        return 1;
    }
    return 0;
}
int b[100010];
double c[100010];
double a[100010];
double s[100010];
int main()
{
    open("bzoj1011");
    int n;
    double x;
    scanf("%d%lf",&n,&x);
    int i,j;
    int m=floor(x*n);
    int t=0;
    for(i=0;i<=m;i++)
        c[i]=double(n)/(n-i);
    for(i=1;i<=m;i++)
        if(i==m||c[i]>c[b[t]]*1.04)
            b[++t]=i;
    for(i=1;i<=n;i++)
    {
        scanf("%lf",&a[i]);
        s[i]=s[i-1]+a[i];
        int last=0;
        double ans=0;
        for(j=1;j<=t;j++)
        {
            int now=floor(double(b[j])/n*i);
            now=min(now,i-1);
            ans+=a[i]*(s[now]-s[last])/(i-last-1);
            last=now;
        }
        printf("%.10lfn",ans);
    }
    return 0;
}

最后

以上就是喜悦衬衫为你收集整理的【BZOJ1011】【HNOI2008】遥远的行星 误差分析的全部内容,希望文章能够帮你解决【BZOJ1011】【HNOI2008】遥远的行星 误差分析所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部