摘要: 252K 16MS#include<stdio.h>#include<string.h>#include<stdlib.h>#include<math.h>#include<algorithm>using namespace std;struct point{ double x; double y;};struct map{ point up; point down;}m[1000];struct node{ int L; int R; node *left; node *right; double len;//区间的长度 int c 阅读全文
posted @ 2012-07-19 09:20 willzhang 阅读(134) 评论(0) 推荐(0) 编辑