码迷,mamicode.com
首页 >  
搜索关键字:inf    ( 34339个结果
POJ - 2926 Requirements
题意:多维的曼哈顿最远距离 思路:做了1,2,3维的,其实就是枚举所有绝对值的可能的表达式 #include #include #include #include using namespace std; const int MAXN = 100005; const int M = 5; const double inf = 1e200; struct node{ double x...
分类:其他好文   时间:2014-05-01 17:31:01    阅读次数:283
BZOJ 1588 营业额统计 Splay
主要操作为Splay中插入节点,查找前驱和后继节点。 1: #include 2: #include 3: #include 4: using namespace std; 5: #define MaxL 100005 6: #define INF 0x7ffffff 7: #define keyT...
分类:其他好文   时间:2014-05-01 14:16:03    阅读次数:633
hdu 1213 How Many Tables
简单并查集#include#include#include#include#include#include#include#include#include#include#include#define inf 0x0f0f0f0fusing namespace std;const double p....
分类:其他好文   时间:2014-05-01 10:15:58    阅读次数:367
hdu 1232 畅通工程
又是一道简单并查集#include#include#include#include#include#include#include#include#include#include#include#define inf 0x0f0f0f0fusing namespace std;const doub....
分类:其他好文   时间:2014-05-01 09:12:36    阅读次数:289
Velocity在web项目中生成模板
需求:后台(指管理员后台)上传一个html模板到文件服务器上,前台(商家操作的平台)读取到模板,并填充数据,生成新的vm页面到webapp/WEB-INF/view目录下,用于预览、保存、打印。 最开始的代码: @Test public void test() throws Exception{ String templateUrl = baseServic...
分类:Web程序   时间:2014-04-29 13:11:21    阅读次数:465
HDOJ 3790 双权值Dijkstra
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 const int INF = 1000000; 8 const int MAXSIZE = 1005; 9 10 int map[MAXSIZE...
分类:其他好文   时间:2014-04-28 09:34:15    阅读次数:558
FOJ 2170 花生的序列 dp
题目链接:http://acm.fzu.edu.cn/problem.php?pid=2170 贴个baka爷的代码留念。。 数据出的有问题,输入的字符串长度不超过1000 #include #include #include #include #include #include #include #include #include #include #define inf 0x3f3f3f...
分类:其他好文   时间:2014-04-27 22:16:18    阅读次数:359
最小费用最大流
每边有一个权值,要求得到最大流并且使得权值和最小把EK算法中的bfs改成spfa,spfa需要注意的是进行松弛的边容量不能为0const int INF=0xfffffff ;struct node{ int s,t,cap,cost,nxt ;}e[200005] ;int sumflow ...
分类:其他好文   时间:2014-04-27 21:45:47    阅读次数:549
HDOJ 1217 Floyed Template
1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 mapname; 9 const int INF = 1000000;10 const int MAXSIZE = 1005...
分类:其他好文   时间:2014-04-27 21:03:01    阅读次数:552
34339条   上一页 1 ... 3432 3433 3434
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!