摘要: #include <iostream>#include <stdlib.h>#include <string.h>#include <algorithm>#define MAX 500 using namespace std; struct Line{ int start; int end; int lenth; }line[MAX]; int n, linenumber, minlenth; int father[MAX], map[MAX][MAX], mark[MAX]; int cmp(Line a, Line b) { return a 阅读全文
posted @ 2012-06-01 19:42 背着超人飞 阅读(152) 评论(0) 推荐(0)