POJ 2187 Beauty Contest 旋转卡壳
题目大意:给定n个点,求距离最远的两个点之间的距离,输出最远距离的平方旋转卡壳模板题。#include <cstdio>#include <algorithm>#include <cstring>#define N 50005using namespace std;inline int sq(int x) { return x*x; }struct Point { int x,y
原创
2017-03-19 22:17:55 ·
354 阅读 ·
0 评论