POJ 1113 凸包 graham
摘要:
题目:http://poj.org/problem?id=1113大意:求出凸包的周长,再加上一个圆的周长就是本问题的答案。这个问题没有任何的难度,直接采用现成的模板就可以了。View Code #include "iostream"#include "cstdio"#include "cmath"#include "algorithm"using namespace std;const double PI=acos(-1.0);const int size=1005;const double eps=1e-8;s 阅读全文
posted @ 2011-11-15 21:51 More study needed. 阅读(237) 评论(0) 推荐(0)
浙公网安备 33010602011771号