hdu 1873 优先队列
摘要:
#include<iostream>#include<stdio.h>#include<queue>using namespace std;struct node{ int level; int index; /*bool operator<(const node t)const { if(level!=t.level) return level<t.level; else return t.index<index; }*/ friend bool operator<(node n1,node n2... 阅读全文
posted @ 2013-04-03 08:46 雨钝风轻 阅读(190) 评论(0) 推荐(0) 编辑