2013年8月4日
摘要: 没有想到这个题可以转化成解方程组的形式,就像线性规划一样,觉得好神奇。《训练指南》上的解析挺详细的,就不写了。#include#include#include#include#include#includeusing namespace std;const int maxn=110;const double eps=1e-8;struct Point{ double x,y; Point(double x=0,double y=0):x(x),y(y) {}};typedef Point Vector;struct DLine//有向直线directed line{ Poin... 阅读全文
posted @ 2013-08-04 18:47 ∑求和 阅读(156) 评论(0) 推荐(0) 编辑