摘要: 1 #include<stdio.h> 2 #include<string.h> 3 #include<algorithm> 4 #include<queue> 5 using namespace std; 6 7 const int MAXN = 10005; 8 9 int tree[MAXN],indegree[MAXN],n,m; 10 int first[MAXN],sn[2*MAXN],en[2*MAXN],next[2*MAXN]; 11 struct edge 12 { 13 int s,e,type; 14 }data[2*MA 阅读全文
posted @ 2012-12-08 16:33 kiwi_bird 阅读(192) 评论(0) 推荐(0) 编辑