Shirlies
宁静专注认真的程序媛~
摘要: 直接暴力,虽然效率很差。。。。。。View Code 1 #include <iostream> 2 #include <queue> 3 using namespace std; 4 5 struct node 6 { 7 char name[100]; 8 int para; 9 int prio;10 int id;11 friend bool operator < (const node& a,const node& b)12 {13 if(a.prio == b.prio)14 return ... 阅读全文
posted @ 2012-09-22 21:03 Shirlies 阅读(192) 评论(0) 推荐(0) 编辑