sgu251:Polymania(构造)

题目大意:
       给出平面上 n(3n8) 个点,每个点有一个坐标 ( 未知)和正整数权值 Ri ,其中 Rn1=Rn ,给出一组坐标构造,使得任意三个点构成的三角形面积为这三个点的权值和。

分析:
       我们以最后两个有相等权值的点为基来考虑。
       满足条件的一组构造必定满足如下条件:
       1. 因为权值均为正整数,所以没有三点共线;
       2. 构造必定形如:
这里写图片描述
       即除 Rn1,Rn 外的点必定在上或下的平行线上 ( 证明很显然)
       3. 2 的基础上,在上下两条平行线上分别任取一个点,这两个点连线段必过Rn1,Rn的中点。
       综上所述,当 n>4 时,一定无解;
                       n=4 时,若 R1+R2=R3+R4 ,那么可以把 R1,R2 上下放;
                                          R1=R2 ,可以两个都放上面;
                                          否则无解;
                       n=3 时,一定有解,随便构造即可。

AC code:

#include <cstdio>
#include <cmath>
typedef double DB;
using namespace std;

const int MAXN = 5;
const DB eps = 1e-8;

int n;
DB a[MAXN];

int main()
{
    #ifndef ONLINE_JUDGE
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
    #endif

    scanf("%d", &n);
    if(n > 4) puts("NO");
    else
    {
        for(int i = 1; i <= n; ++i)
            scanf("%lf", a+i);
        if(n == 4)
        {
            if(fabs(a[1]+a[2]-a[3]-a[4]) > eps) 
            {
                if(fabs(a[1]-a[2]) > eps) puts("NO");
                else
                {
                    DB x3 = -10, x4 = 10, x, y;
                    y = (a[1]+a[3]+a[4])*2/(x4-x3);
                    x = (a[1]+a[2]+a[3])*2/y;
                    puts("YES");
                    printf("%.4lf %.4lf\n", -x/2, y);
                    printf("%.4lf %.4lf\n", x/2, y);
                    printf("%.4lf 0.0000\n", x3);
                    printf("%.4lf 0.0000\n", x4);
                }
            }
            else
            {
                DB x3 = -10, x4 = 10, y1, y2;
                y1 = (a[1]+a[3]+a[4])*2/(x4-x3);
                y2 = -(a[2]+a[3]+a[4])*2/(x4-x3);
                puts("YES");
                printf("0.0000 %.4lf\n", y1);
                printf("0.0000 %.4lf\n", y2);
                printf("%.4lf 0.0000\n", x3);
                printf("%.4lf 0.0000\n", x4);
            }
        }
        else
        {
            DB x2 = -10, x3 = 10, y1;
            y1 = (a[1]+a[2]+a[3])*2/(x3-x2);
            puts("YES");
            printf("0.0000 %.4lf\n", y1);
            printf("%.4lf 0.0000\n", x2);
            printf("%.4lf 0.0000\n", x3);
        }
    }

    #ifndef ONLINE_JUDGE
    fclose(stdin);
    fclose(stdout);
    #endif
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值