摘要: 题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1542题目大意:线段树+扫描线+面积并注释:1.偶是菜鸟狗,从大牛那里copy过来的代码模板。 2.推荐线段树求面积并的地址:http://www.cnblogs.com/ka200812/archive/2011/11/13/2247064.html 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 struct node 8 { 9 int l; 10 int r... 阅读全文
posted @ 2014-03-20 18:35 huangxf 阅读(137) 评论(0) 推荐(0) 编辑