本文主要是介绍Codeforces Round #331 (Div. 2)A. Wilbur and Swimming Pool(简单计算),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目链接
题意:给出n个点,问能否计算出以这n(n<=4)个点为顶点的矩形面积。
解法:找对角线的点,计算即可
悲剧:读题不仔细害死人= =。夜里做的时候没有看到数据的输入保证,写了很多判断平行,,,唉,下次读题要仔细。
#include<bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define X first
#define Y second
#define cl(a,b) memset(a,b,sizeof(a))
typedef pair<double,double> P;
const int maxn=100005;
const int inf=1<<27;
const LL mod=1e9+7;
struct point{int x,y;
}p[5];
int main(){int n;scanf("%d",&n);for(int i=0;i<n;i++){scanf("%d%d",&p[i].x,&p[i].y);}int ans=-1;for(int i=0;i<n;i++){for(int j=0;j<n;j++)if(i!=j){if(p[i].x!=p[j].x&&p[i].y!=p[j].y){ans=abs(p[i].x-p[j].x)*abs(p[i].y-p[j].y);}}}printf("%d\n",ans);return 0;
}
这篇关于Codeforces Round #331 (Div. 2)A. Wilbur and Swimming Pool(简单计算)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!