E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
0x7fffffff
bcb Split涵数
Split(WideString Spliter, WideString String, int SplitNumber = 0){ int const MaxPos =
0x7fffffff
·
2015-11-13 02:34
split
poj 2387
我又在这种裸题上花了一上午的宝贵时间,唉,这回错在忽略了重边的情况、 #include"stdio.h" #include"string.h" #define Maxn
0x7fffffff
·
2015-11-13 01:47
poj
POJ3264(Balanced Lineup)
(a):(b)) #define INF
0x7fffffff
#define N 500
·
2015-11-12 22:52
poj
HDOJ搜索专题之A strange lift
stdio.h> 2 #include <string.h> 3 #include <queue> 4 #define N 201 5 #define INF
0x7fffffff
·
2015-11-12 22:38
搜索
HDOJ搜索专题之Accept Necklace
经测试N最大好像是21,定义成20会WA View Code 1 #include <stdio.h> 2 #define N 21 3 #define INF
0x7fffffff
·
2015-11-12 22:32
搜索
POJ3250(Bad Hair Day)
设牛i能看到的牛数为Ci,求∑Ci View Code 1 #include <stdio.h> 2 #define N 8000001 3 #define INF
0x7fffffff
·
2015-11-12 22:03
AIR
prim()模板
#include<stdio.h> #include<string.h> #include<stdlib.h> const int inf=
0x7fffffff
·
2015-11-12 22:37
Prim
dijkstra()模板
stdlib.h> #include<string.h> int n,m,hash[1010],dis[1010],map[1010][1010]; const int inf=
0x7fffffff
·
2015-11-12 22:33
dijkstra
floyed()模板
stdio.h> #include<string.h> #include<stdlib.h> int n,m,map[124][124]; const int inf=
0x7fffffff
·
2015-11-12 22:33
模板
编程中无穷大常量的设定技巧 2014-08-19 09:22 35人阅读 评论(0) 收藏
转自 http://aikilis.tk/ 如果问题中各数据的范围明确,那么无穷大的设定不是问题,在不明确的情况下,很多程序员都取
0x7fffffff
作为无穷大,因为这是32-bit
·
2015-11-12 21:33
编程
HDOJ 2255 奔小康赚大钱 (二分图最优匹配-KM算法)
View Code #include <stdio.h> #include <string.h> #define N 300 #define INF
0x7fffffff
·
2015-11-12 19:56
二分图
杭电 1874 畅通工程续
#include<stdio.h> #include<string.h> #include<stdlib.h> int inf=
0x7fffffff
; int
·
2015-11-12 19:48
杭电
杭电 3790 最短路径问题
#include<stdio.h> #include<string.h> #include<stdlib.h> int n,m,s,t; int inf=
0x7fffffff
·
2015-11-12 19:47
最短路径
杭电 1233 还是畅通工程
#include<stdio.h> #include<stdlib.h> #include<string.h> int inf=
0x7fffffff
; int
·
2015-11-12 19:46
杭电
杭电 2544 最短路
#include<stdio.h> #include<string.h> #include<stdlib.h> int inf=
0x7fffffff
; int
·
2015-11-12 19:44
最短路
662 - Fast Food
1],结果wa了一次,在状态转移的时候,采用一个数组sc记录一下节点的位置 #include <cstdio> #include <cstring> #define N
0x7fffffff
·
2015-11-12 16:02
OO
UVA 11258 - String Partition
注意用long long就可以了 #include<stdio.h> #include<string.h> #define INF
0x7fffffff
char
·
2015-11-12 15:03
partition
hdu 1754 I Hate It
线段树基础题: 1 #include<stdio.h> 2 #include<string.h> 3 #define INF
0x7fffffff
4 #define
·
2015-11-12 10:16
HDU
int和long long有符号整形 负数比正数多一个
int的负数比正数多一个,则有一个负数在int范围内没有对应的正数 最大正整数用十六进制,很容易表示:0x7f ff ff ff int num =
0x7fffffff
; num = -num
·
2015-11-12 10:06
long
POJ 1502题
/解题思路:使用Floy算法实现#include <stdio.h>#include <string.h>#define arraysize 101int maxData =
0x7fffffff
·
2015-11-12 09:04
poj
POJ 2485
//Prim算法求最小生成树#include <iostream>using namespace std;#define arraysize 501int maxData =
0x7fffffff
·
2015-11-12 09:36
poj
POJ 1258
lt;iostream>#include <string.h>using namespace std;#define arraysize 101int maxData =
0x7fffffff
·
2015-11-12 09:35
poj
POJ3268
include <string.h> //memset的头文件using namespace std;#define arraysize 1001int maxData =
0x7fffffff
·
2015-11-12 09:34
poj
POJ 3268
include <string.h> //memset的头文件using namespace std;#define arraysize 1001int maxData =
0x7fffffff
·
2015-11-12 09:30
poj
Dijkstra邻接表(vector实现)
edge{ int v; int w;}edge;#define narray 1001const int maxData =
0x7fffffff
·
2015-11-11 15:07
dijkstra
Prim算法模板
arraysize][arraysize];bool final[arraysize];int d[arraysize]; int maxData =
0x7fffffff
·
2015-11-11 15:03
Prim
最大流EK算法模板
include <queue>//#include <conio.h>using namespace std;#define arraysize 201int maxData =
0x7fffffff
·
2015-11-11 15:51
最大流
POJ 1273
include <queue>//#include <conio.h>using namespace std;#define arraysize 201int maxData =
0x7fffffff
·
2015-11-11 15:47
poj
POJ 1287题
gt;#include <string.h> //引入memset的头文件#define arraysize 51int maxData =
0x7fffffff
·
2015-11-11 15:32
poj
POJ 1251题
arraysize 28int dis[arraysize][arraysize];bool final[arraysize];int d[arraysize];int n;int maxData =
0x7fffffff
·
2015-11-11 15:21
poj
POJ 2421题
算法实现,注意将已修建的路的距离置为0#include <stdio.h>#include <string.h>#define arraysize 101int maxData =
0x7fffffff
·
2015-11-11 15:19
poj
poj 1061 青蛙的约会
3 #include<cstring> 4 #include<cstdlib> 5 #include<algorithm> 6 #define inf
0x7fffffff
·
2015-11-11 14:29
poj
POJ 2112
//题目类型:最大流+二分搜索//本题与09年东北四省赛Power Line题目类似//注意:最大值不要使用
0x7fffffff
,否则会一直wa #include <iostream>//#
·
2015-11-11 10:42
poj
hdu 2544 赤裸裸的最短路
#include <stdio.h>#define SIZE 100int map[SIZE][SIZE];int MAX =
0x7fffffff
;int N, M, i, j, k, c
·
2015-11-11 10:14
HDU
编程中无穷大常量的设定技巧
本文转载自:http://www.xuebuyuan.com/574306.html 如果问题中各数据的范围明确,那么无穷大的设定不是问题,在不明确的情况下,很多 程序员都取
0x7fffffff
·
2015-11-11 09:22
编程
HDOJ 1874 畅通工程续
单源最短路径,Dijkstra,参考白书的写法; 注意INF不能定义为
0x7fffffff
,因为后面相加可能会溢出,题目中距离最大为10000; 这道题的变态之处在于有重边,遇到重边时需要更新w[i
·
2015-11-11 07:16
OJ
0x3f3f3f3f...编程中无穷大常量的设置技巧
转自 http://aikilis.tk/ 如果问题中各数据的范围明确,那么无穷大的设定不是问题,在不明确的情况下,很多程序员都取
0x7fffffff
作为无穷大,因为这是32-bit int
·
2015-11-10 23:30
编程
三维凸包模板
lt;cstdio> #include <cmath> #include <algorithm> using namespace std; #define inf
0x7fffffff
·
2015-11-10 22:12
模板
hdu4452 搜索模拟 Running Rabbits (2012 Asia JinHua Regional Contest problem K)
include #include #include #include #include #include usingnamespacestd; typedeflonglongLL; constintINF=
0x7fffffff
qdbszsj
·
2015-11-09 08:00
hdu3790
#include < iostream > #define M 1001 #define Max
0x7fffffff
·
2015-11-08 17:35
HDU
【HYSBZ】1036 树的统计Count
#include<queue> 4 #include<iostream> 5 #include<algorithm> 6 #define oo
0x7FFFFFFF
·
2015-11-08 17:22
count
【HYSBZ】1500 维修数列
#include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 #define oo
0x7FFFFFFF
·
2015-11-08 17:16
500
【POJ】3580 SuperMemo
#include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 #define oo
0x7FFFFFFF
·
2015-11-08 17:16
super
【HYSBZ】1503 郁闷的出纳员
1 #include<cstdio> 2 #define INF
0x7FFFFFFF
3 #define MAXN 100010 4 struct SplayTree
·
2015-11-08 17:14
B
【HYSBZ】1588 营业额统计
1 #include<cstdio> 2 #include<algorithm> 3 #define MAXN 100010 4 #define INF
0x7FFFFFFF
·
2015-11-08 17:11
统计
【HDU】4210 Su-domino-ku
algorithm> 4 #define MAXN 300000 5 #define MAXL 1010 6 #define MAXM 10 7 #define INF
0x7FFFFFFF
·
2015-11-08 17:02
dom
【HDU】3957 Street Fighter
cstdio> 2 #include<cstring> 3 #define MAXM 110 4 #define MAXN 100000 5 #define INF
0x7FFFFFFF
·
2015-11-08 17:01
tree
【UVa】387 A Puzzling Problem
lt;cstring> 3 #define MAXM 10 4 #define MAXN 100000 5 #define MAXL 110 6 #define INF
0x7FFFFFFF
·
2015-11-08 17:00
uva
【POJ】1084 Square Destroyer
vector> 4 #include<algorithm> 5 #define MAXM 80 6 #define MAXN 100000 7 #define INF
0x7FFFFFFF
·
2015-11-08 17:59
des
【HDU】3656 Fire station
cstring> 4 #include<algorithm> 5 #define MAXN 5000 6 #define MAXM 60 7 #define INF
0x7FFFFFFF
·
2015-11-08 17:58
HDU
上一页
3
4
5
6
7
8
9
10
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他