图论
文章平均质量分 53
xiaoyulunUSC
这个作者很懒,什么都没留下…
展开
-
poj 1789 Truck History
Truck History Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 18812 Accepted: 7257 Description Advanced Cargo Movement, Ltd. uses trucks of different types原创 2014-09-12 17:11:02 · 440 阅读 · 0 评论 -
HDU 1285 确定比赛名次
拓扑排序水题,这题原创 2014-11-08 15:28:30 · 527 阅读 · 0 评论 -
Uva 10305 Ordering Tasks(拓扑排序)
/* Kahn 算法 复杂度:O(E+V) L← Empty list that will contain the sorted elements S ← Set of all nodes with no incoming edges while S is non-empty do remove a node n from S insert n into L for eac原创 2014-11-08 15:50:50 · 557 阅读 · 0 评论 -
HDU 1869 六度分离(Floyd)
#include #include #include #include using namespace std; #define INF 10000000 int n,m; int a[105][105]; void warashall_floyd(){ for(int k=0;k<n;k++){ for(int i=0;i<n;i++){ for(int j=0;j<n;j+原创 2014-10-06 21:00:50 · 574 阅读 · 0 评论 -
HDU 2647 Reward(反向拓扑)
这题给的内存忒小了,不能用邻接矩阵存,只能用邻接表原创 2014-11-12 22:22:30 · 626 阅读 · 0 评论 -
HDU 3342 Legal or Not
拓扑排序,直接pan原创 2014-11-12 23:04:35 · 584 阅读 · 0 评论 -
HDU 1301 Jungle Roads
裸的最小生成树 #include #include #include #include using namespace std; const int INF=0x3f3f3f3f; const int maxn=30; bool vis[maxn]; int lowc[maxn]; int cost[maxn][maxn]; int n; int prim(){ int ans=0;原创 2015-02-17 22:21:58 · 377 阅读 · 0 评论