摘要: HDU 1115大意:给你个n,有n个点,然后给你n个点的坐标,求这n个点形成的多边形的重心的坐标。 1 struct point 2 { 3 double x, y; 4 } P[1000010]; 5 6 struct line 7 { 8 point a, b; 9 } ;1... 阅读全文
posted @ 2014-04-22 12:51 GLSilence 阅读(519) 评论(0) 推荐(0) 编辑