zoukankan      html  css  js  c++  java
  • URAL

    Two students are playing the following game. There are 2· n points on the plane, given with their coordinates ( xiyi). Each move player paints the point with his own color (first with white, second with black). The first student makes odd moves, second student makes even moves. When all points are painted (each student made n moves), the game finishes. Each student gets amount of points (real number) that equals to the sum of all distances among pairs of points, colored with his color. Student who get more points becomes a winner. The students play optimally. Find and print the difference between points amount of winner and looser.
    Input
    Contains multiple test cases. The first line of each case contains positive integer number n ( n ≤ 500). Next 2· n lines contain points' coordinates ( x 1, y 1), ( x 2, y 2), …, ( x 2n, y 2n).
    Output
    For each test case output the difference between the points of winner and looser. Output the difference with three digits after decimal point.
    Example
    inputoutput
    2
    0 0
    0 1
    1 0
    1 1
    2
    0 0
    1 0
    0 3
    1 5
    
    0.000
    1.937
    

    思路:之前遇到了类似的题。由于这样的题比较抽象,当时我是陷入了矛盾的,A既要让自己越大越好,又要使B越小越好(B同理),这两个标准会不会又矛盾呢,该遵循哪一个呢。

    此题可以推出来,二则在使自己大的时候,也约束 了对方更小。

    val A= Sum( distant(pi,pj) ) { i<j && i,j belong to A}   - Sum( distant(pi,pj) ) {i<j && i,j belong to B}

            = Sum( distant(pi,pj) ) {i,j belong to Q}  - Sum( distant(pi,pj) ) { i belong to B && j belong to Q}

    (其中Q是全集。

    我们令dis是点到其他所有点的距离之和,那么A和B都按照dis从大到小选,既能要自己更大,也能让对方更小。

    (下次再遇到这样的题,就用公式,把他们的标准统一就好了(如果可以的话)。

    #include<bits/stdc++.h>
    using namespace std;
    const int maxn=1010;
    double x[maxn],y[maxn],dis[maxn],ans;int p[maxn];
    bool cmp(int w,int v){ return dis[w]>dis[v]; }
    double dist(int u,int v){
        return sqrt((x[u]-x[v])*(x[u]-x[v])+(y[u]-y[v])*(y[u]-y[v]));
    }
    int main()
    {
        int N;
        while(scanf("%d",&N)==1){ N<<=1;
            for(int i=1;i<=N;i++) scanf("%lf%lf",&x[i],&y[i]);
            for(int i=1;i<=N;i++) p[i]=i;
            for(int i=1;i<=N;i++){
                dis[i]=0.;
                for(int j=1;j<=N;j++) dis[i]+=dist(i,j);
            }
            sort(p+1,p+N+1,cmp); ans=0;
            for(int i=1;i<=N;i++){
                double tmp=0.0;
                for(int j=i+2;j<=N;j+=2) tmp+=dist(p[i],p[j]);
                if(i&1) ans+=tmp; else ans-=tmp;
            }
            printf("%.3lf
    ",ans);
        }
        return 0;
    }
  • 相关阅读:
    jquery 根据 option 的 text 定位选中 option
    Mac 打开任务管理器 关闭程序
    什么是 IaaS、PaaS、SaaS
    网站 A/B Test
    PHP 设计模式之策略模式
    mybatis-plus的使用 ------ 入门
    IEDA和svn上同步及更新代码【我】
    springBoot 项目测试【我】
    Idea检出项目配置【我】
    IDEA常用的风格设置
  • 原文地址:https://www.cnblogs.com/hua-dong/p/10064829.html
Copyright © 2011-2022 走看看