zoukankan      html  css  js  c++  java
  • Graveyard(poj3154)

    Graveyard

    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 1289   Accepted: 660   Special Judge

    Description

    Programming contests became so popular in the year 2397 that the governor of New Earck — the largest human-inhabited planet of the galaxy — opened a special Alley of Contestant Memories (ACM) at the local graveyard. The ACM encircles a green park, and holds the holographic statues of famous contestants placed equidistantly along the park perimeter. The alley has to be renewed from time to time when a new group of memorials arrives.

    When new memorials are added, the exact place for each can be selected arbitrarily along the ACM, but the equidistant disposition must be maintained by moving some of the old statues along the alley.

    Surprisingly, humans are still quite superstitious in 24th century: the graveyard keepers believe the holograms are holding dead people souls, and thus always try to renew the ACM with minimal possible movements of existing statues (besides, the holographic equipment is very heavy). Statues are moved along the park perimeter. Your work is to find a renewal plan which minimizes the sum of travel distances of all statues. Installation of a new hologram adds no distance penalty, so choose the places for newcomers wisely!

    Input

    Input file contains two integer numbers: n — the number of holographic statues initially located at the ACM, and m — the number of statues to be added (2 ≤ n ≤ 1000, 1 ≤ m ≤ 1000). The length of the alley along the park perimeter is exactly 10 000 feet.

    Output

    Write a single real number to the output file — the minimal sum of travel distances of all statues (in feet). The answer must be precise to at least 4 digits after decimal point.

    Sample Input

    2 1
    2 3
    3 1
    10 10

    Sample Output

    1666.6667
    1000.0000
    1666.6667
    0.0000

    Hint

    Pictures show the first three examples. Marked circles denote original statues, empty circles denote new equidistant places, arrows denote movement plans for existing statues.

    ps:http://poj.org/problem?id=3154

    #include<cstdio>
    #include<iostream>
    #include<algorithm>
    #include<cmath>
    using namespace std;
    
    double nmin(double x,double y)
    {
        return x<y?x:y;
    }
    int main()
    {
        int n,m,i,j;
        double ans,s,o,temp;
        double a[1005],c[2005];
        while(scanf("%d%d",&n,&m)!=EOF)
        {
            s=1.0/(double)n;
            o=1.0/(double)(n+m);
            for(i=0;i<n;i++)
                a[i]=i*s;
            for(j=0;j<m+n;j++)
                c[j]=j*o;
            ans=0;
            for(i=0;i<n;i++)
            {
                for(j=0;j<m+n;j++)
                {
                    if(a[i]<=c[j])
                    break;
                }
                int loc=j;
                temp=fabs(a[i]-c[j]);
     //           printf("temp = %lf
    ",temp);
                if(loc>0)
                    temp=nmin(temp,fabs(a[i]-c[loc-1]));
                if(loc<n+m-1)
                    temp=nmin(temp,fabs(a[i]-c[loc+1]));
                ans+=temp;
            }
    
            printf("%.4f
    ",ans*10000);
        }
        return 0;
    }

    然后下面是大神的代码:

    #include<cstdio>
    #include<cmath>
    using namespace std;
    
    int main()
    {
        int n,m;
        while(scanf("%d%d",&n,&m)==2)
        {
            double ans=0;
            for(int i=1;i<n;i++)
            {
                double pos=(double)i/n*(n+m);           //计算每个需要移动是雕塑的坐标
                ans+=fabs(pos-floor(pos+0.5))/(n+m);    //累加移动距离
            }
            printf("%.4f
    ",ans*10000);//等比例扩大坐标
            //第一次交是lf。。。结果就错了,可能是精度问题吧。
        }
        return 0;
    }
  • 相关阅读:
    Gartner:安全软件在经济危机中独善其身 狼人:
    美军正式成立网络战司令部 保护美军网络 狼人:
    警惕“搜房网”“凯业房园”等网站被挂马 狼人:
    Gartner:08年全球杀毒软件市场份额排名 微软第七 狼人:
    专访梭子鱼:以“立体交付”保障Web应用安全 狼人:
    安全专家称Opera Unite或成黑客“好友” 狼人:
    微软正式提供免费杀毒软件下载 仅限7.5万份 狼人:
    电信故障引发全国多地上网难 京沪等地受影响 狼人:
    中国拟修订保守国家秘密法 严防通过互联网泄密 狼人:
    Google推反恶意广告网站 防护恶意软件威胁 狼人:
  • 原文地址:https://www.cnblogs.com/yuyixingkong/p/3868580.html
Copyright © 2011-2022 走看看