InputThe first line contains a integer TT indicating the total number of test cases. Each test case begins with an integer nn, denoting the number of stars in the sky. Following nn lines, each contains 22 integers xi,yixi,yi, describe the coordinates of nn stars.
1≤T≤3001≤T≤300
3≤n≤1003≤n≤100
−10000≤xi,yi≤10000−10000≤xi,yi≤10000
All coordinates are distinct.OutputFor each test case, please output "`YES`" if the stars can form a regular polygon. Otherwise, output "`NO`" (both without quotes).Sample Input
3 3 0 0 1 1 1 0 4 0 0 0 1 1 0 1 1 5 0 0 0 1 0 2 2 2 2 0
Sample Output
NO YES NO
思路:多边形中,n个点对任意其他点的距离,总共有n/2种不同的长度,利用这个规则,可直接求。
#include <cstdio> #include <iostream> #include <string> #include <cstring> #include <cmath> #include <algorithm> #include <queue> #include <map> #include <vector> using namespace std; int t, n, x[100+8], y[100+8]; map<int, int>len; int main() { scanf("%d", &t); while(t--) { scanf("%d", &n); len.clear();//一定要记得清空,不然size会改变,插入的时候也会继续往后插 int ii = 0; for(int i = 0; i<n; i++) scanf("%d%d", &x[i], &y[i]); for(int i = 0; i<n; i++) for(int j = i+1; j<n; j++) len[(x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j])] = 1; if(len.size() == n/2)printf("YES\n"); else printf("NO\n"); } return 0; }
HDU - 5533 G - Dancing Stars on Me(思维)
原文:https://www.cnblogs.com/RootVount/p/10908440.html