Gym - 101149K Revenge of the Dragon 脑洞题,样例题

http://codeforces.com/gym/101149/problem/K

题意:题目贼长,但其实是个脑筋急转弯。。。

题解:题目要求某图形面积。该图形只有一个自由度,就是起点与终点距离x。样例给出了x==1时的解S0,所以ans=x*x*S0

ac 代码:

#include<iostream>
#include<stdio.h>
#include<algorithm>
#include<vector>
using namespace std;

typedef long long ll; 
int main(){
    double x1,x2,x3,x4;
    cin>>x1>>x2>>x3>>x4;
    double t=(x1-x3)*(x1-x3)+(x2-x4)*(x2-x4);
    ;
    printf("%.10lf",t*0.916297857297023);
}

 

posted @ 2018-03-12 07:29  SuuTTT  阅读(141)  评论(0编辑  收藏  举报