Shirlies
宁静专注认真的程序媛~
摘要: 表示很无语的一题,纯粹意义上的字符处理,晕...用优先队列做的,时间0ms...代码如下: 1 #include <cstdio> 2 #include <cstring> 3 #include <queue> 4 using namespace std; 5 6 struct node 7 { 8 int u,v; 9 int w; 10 }p[5000]; 11 int d[1000]; 12 int n,m; 13 int num; 14 int first[5000]; 15 int nextt[5000]; 16 typedef pair<i 阅读全文
posted @ 2012-05-04 21:13 Shirlies 阅读(344) 评论(0) 推荐(0) 编辑