
图
文章平均质量分 88
清风--旋叶
eline
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
hdu 2121 Ice_cream’s world II(最小树形图,不定根)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2121原创 2014-08-19 14:51:49 · 635 阅读 · 0 评论 -
poj 3164 Command Network(最小树形图朱刘算法)
题目链接:http://poj.org/problem?id=3164 Description After a long lasting war on words, a war on arms finally breaks out between littleken’s and KnuthOcean’s kingdoms. A sudden and violent assault原创 2014-08-19 10:17:04 · 702 阅读 · 0 评论 -
zoj 3811 Untrusted Patrol 图论 The 2014 ACM-ICPC Asia Mudanjiang Regional First Round
Edward is a rich man. He owns a large factory for health drink production. As a matter of course, there is a large warehouse in the factory. To ensure the safety of drinks, Edward hired a security ma原创 2014-09-18 08:52:21 · 1907 阅读 · 0 评论 -
hdu 1151 Air Raid(DAG最小路径覆盖)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1151原创 2014-08-21 22:27:40 · 621 阅读 · 0 评论 -
poj 2330 Watchcow(欧拉回路求点序列)
题目链接:http://poj.org/problem?id=2230 Description Bessie's been appointed the new watch-cow for the farm. Every night, it's her job to walk across the farm and make sure that no evildoers are doin原创 2014-08-29 15:00:33 · 729 阅读 · 0 评论 -
Prim基础最小生成树
http://acm.hdu.edu.cn/showproblem.php?pid=1102 #include #include #define INF 1001 int map[101][101],vis[101],dist[101]; int n; int prim() { int i,j,mincost=0; for(i=1;i<=n;i++) //初始化原创 2014-03-05 09:03:04 · 839 阅读 · 0 评论