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
10010
POJ 1384 Piggy-Bank(完全背包)
gt; #include <algorithm> #include <climits> using namespace std; const int MAXD =
10010
·
2015-11-12 17:52
pig
HDOJ 2072 单词数(trie树入门)
nbsp; #include <iostream> using namespace std; struct node { bool isword; int child[26]; } trie[
10010
·
2015-11-12 17:38
trie
UVa 624 CD(01背包并打印)
#include <cstdio> #include <cstdlib> #include <cstring> const int MAXN =
10010
·
2015-11-12 17:07
uva
HDU 1102 Constructing Roads
include <cstring> #include <algorithm> using namespace std; struct data{int l,x,y;}seg[
10010
·
2015-11-12 16:49
struct
HDU 2874 Connections between cities
题解:求树上最短路,所以直接LCA: 倍增求LCA: #include <cstdio> int f[
10010
][18]; int s[
10010
],d[
10010
],from[
·
2015-11-12 16:45
Connection
HDU 3635 Dragon Balls
#include <cstdio> #include <cstring> const int MAXN=
10010
; int n,q,count[MAXN],f
·
2015-11-12 16:32
drag
UVA 825 - Walking on the Safe Side(重做)
高人的代码: #include<stdio.h>#include<string.h>#include<ctype.h>#define MAXD 1010char b[
10010
·
2015-11-12 15:46
ide
UVA 10465 - Homer Simpson
代码如下: #include<string.h>#include<stdio.h>#define MAXN
10010
int a[3], t, f[MAXN];void solve
·
2015-11-12 15:43
home
序列检测器
本例中将设计一个“
10010
”序列的检测器。
·
2015-11-12 13:12
序列
桶排序
1 #include<stdio.h> 2 #include<string.h> 3 4 int a[
10010
],w[
10010
],p[
10010
],o[
10010
·
2015-11-12 12:43
排序
快速排序
gt; 2 #include<time.h> 3 #include<algorithm> 4 using namespace std; 5 6 int a[
10010
·
2015-11-12 12:41
快速排序
hdu 1709 The Balance
pid=1709 View Code #include<cstdio>using namespace std;int s[110],c1[
10010
],c2[
10010
];int
·
2015-11-12 11:48
HDU
洛克王国天狗剑客技能表 种族值 进化图一览
洛克王国天狗剑客种族值宠物名精力攻击防御速度魔攻魔抗总和天狗剑客9610273976374505洛克王国天狗剑客技能表技能等级属性类型目标威力PP效果底力初始普通系物理敌方
10010
如果蓄力过程没有受到对方攻击的干扰
佚名
·
2015-11-12 10:13
洛克王国武藏技能表 种族值 进化图一览
洛克王国武藏种族值宠物名精力攻击防御速度魔攻魔抗总和武藏136142113137103114745洛克王国武藏技能表技能等级属性类型目标威力PP效果底力初始普通系物理敌方
10010
如果蓄力过程没有受到对方攻击的干扰
佚名
·
2015-11-12 09:53
[诡异!]欧拉回路代码实现
//读入一个无向图 进行欧拉回路判定 如果是 输出回路 #include <stdio.h> #define MAXN
10010
int bl[MAXN][MAXN],match[MAXN
·
2015-11-12 09:13
代码
寄存器(内存访问)07 - 零基础入门学习汇编语言19
比如我们将
10010
H~1001
·
2015-11-11 18:04
汇编语言
寄存器(内存访问)07 - 零基础入门学习汇编语言19
比如我们将
10010
H~1001
·
2015-11-11 18:02
汇编语言
最小生成树 kruskal算法
include<stdio.h> 2 #include<algorithm> 3 struct Edge 4 { 5 int u,v,w; 6 }edge[
10010
·
2015-11-11 17:08
最小生成树
uva
10010
- Where's Waldorf?
#include<iostream> #include<cctype> #include<algorithm> using namespace std; char a[55][55]; string s[22]; int T,m,n,k; int mx[] = {1, 1, 1, 0, 0, -1, -1, -1};
·
2015-11-11 17:05
where
poj 1674 Sorting by Swapping 置换群
Code #include<stdio.h> #include<string.h> #include<stdlib.h> const int N =
10010
·
2015-11-11 17:56
sort
Where's Waldorf?
1 /* UVa
10010
- Where's Waldorf? */ 2 # include <stdi
·
2015-11-11 12:03
where
hdu_1203
dp[i] is the possibility he can get at least 1 offer when i yuan have been taken. 5 int n, m, a[
10010
·
2015-11-11 11:05
HDU
UVA
10010
- Where's Waldorf?
题目http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=951 就是从每个字符的8个方向循环找是否有跟给出的字符串相等的 找的时候稍微限制一些条件即可 代码有点长 View Code 1 #include<stdi
·
2015-11-11 10:31
where
UVA 621 - Secret Research
1 #include <stdio.h> 2 #include <string.h> 3 char s[
10010
]={'\0'}; 4 int n,len; 5
·
2015-11-11 10:12
search
KMP算法模板
nbsp; 1 #include <cstdio> 2 #include <cstring> 3 using namespace std; 4 #define N
10010
·
2015-11-11 09:39
KMP
PC110302/UVA
10010
下周开始就省选了,ACM的日子在今年内应该就会结束了,大三了,最后一次机会了,小小感伤一下…… 今天广州下大雨,心情怪怪的,感觉码不出质量高的,又很久没做过PC了,就刷刷水题吧。 老实说Program challenge的题目,输入输出特麻烦……搞到我PE了三次,从没试过……我今天的转速很低。 这题目有点像字符串匹配,规模也很小,随便写了一下。 我发现我现在做字符串很喜欢用map。c++有
·
2015-11-11 08:00
uva
hdu 1969 Pie 二分
Author: bjfuwangzhu */#include<stdio.h>#include<stdlib.h>#include<math.h>#define nmax
10010
·
2015-11-11 06:43
HDU
哈希表/散列表 指针版模版
lt;vector> #include<algorithm> using namespace std; const int N = 2010; const int M =
10010
·
2015-11-11 00:55
哈希表
LightOJ - 1281 New Traffic System(二维最短路)
0到N-1的最短路解题思路:二维最短路,多开一维存储走到该点已经选择了多少条边了#include#include#include#includeusingnamespacestd;constintN=
10010
暗金色
·
2015-11-10 21:31
ACM-图论-最短路
【SPOJ】913 Query on a tree II
#include<cstring> 3 #include<queue> 4 #include<iostream> 5 #define MAXN
10010
·
2015-11-08 17:26
query
【SPOJ】375 Query on a tree
include<queue> 4 #include<iostream> 5 #include<algorithm> 6 #define MAXN
10010
·
2015-11-08 17:19
query
【HDU】3954 Level up
1 #include<cstdio> 2 #define MAXN
10010
3 #define MAXM 11 4 #define INF 2147483647
·
2015-11-08 17:39
level
【FOJ】1921 栀子花开
1 #include<cstdio> 2 #include<algorithm> 3 using namespace std; 4 #define MAXN
10010
·
2015-11-08 17:35
OJ
HDU 1727 Hastiness
a : b) 7 #define N
10010
·
2015-11-08 16:15
HDU
POJ 1384
#include<cstdio> #include<iostream> using namespace std; #define N
10010
#define M 100000000
·
2015-11-08 13:24
poj
uva
10010
我的哪里错了呢。。。
#include <stdio.h> #include <string.h> struct pos { int x; int y; }; pos result; int times; int m,n; int wdNum; char word[30][60]; char txt[60][60]; bool findWord(char *str,int len,in
·
2015-11-08 10:50
uva
noip2013truck树上路径倍增
#include #include #include usingnamespacestd; #defineINF0x7fffffff intn,m,x,y,z,l,s,u,v,q; boolvis[
10010
zz_ylolita
·
2015-11-07 22:00
POJ 1741 Tree (树的点分治入门)
cstring> #include <algorithm> #include <queue> using namespace std; const int N =
10010
·
2015-11-07 15:13
tree
找出最大的有由个三位数乘积构成的…
而这个六位回文数数P我们可以用xyzzyx的形式表示,那我们可以得到下面的公式: P = 100000x + 10000y + 1000z + 100z + 10y + x P = 100001x +
10010
y
·
2015-11-07 14:58
NYOJ3 3 多边形重心问题
include<string.h> #include<stdlib.h> struct Point{ double x; double y; }point[
10010
·
2015-11-07 13:44
问题
hdu1114 Piggy-Bank
1 #include<stdio.h> 2 int d[
10010
]; 3 int main() 4 { 5 int i,j,n,pig,total,v,w,T;
·
2015-11-07 13:38
pig
hdu2544 最短路
stdio.h> 2 #include<string.h> 3 #include<stdlib.h> 4 #define Max 0xfffffff 5 int m[
10010
·
2015-11-07 13:34
HDU
SDUT 3347 矩阵的快速转置
^_^题目描述转置运算是一种最简单的矩阵运算,对于一个m*n的矩阵M(1= usingnamespacestd; structnode { intx,y,e; }; structMM { nodep[
10010
became_a_wolf
·
2015-11-06 16:00
第三十六篇:发送方式与真机调试过程
1.打电话:》打电话-方法1•最简单最直接的方式:直接跳到拨号界面NSURL*url=[NSURLURLWithString:@"tel://
10010
"];[[UIApplicationsharedApplication
u010372095
·
2015-11-04 18:00
ios
UI
Objective-C
真机调试
发送方式
110302_Where's Waldorf?(寻找单词)
page=downloadproblem&probid=110302&format=html UVA
10010
Where's Waldorf?
·
2015-11-03 21:44
where
移动手机停机保留号码吗?停机后还收钱吗
(移动10086、联通
10010
) 移动公司一般间隔三个月查看一
·
2015-11-02 17:20
移动
KMP算法 AC自动机 初见
include<iostream> #include<cstdio> #include<cstring> using namespace std; int f[
10010
·
2015-11-02 15:02
AC自动机
hihoCoder #1070 : RMQ问题再临
1 #include <bits/stdc++.h> 2 using namespace std; 3 const int N=
10010
; 4 int w[N], n, q,
·
2015-11-02 11:14
code
POJ 3122 Pie 二分枚举
#include <stdio.h> 2 #include <math.h> 3 4 const double PI = acos(-1); 5 int r[
10010
·
2015-11-02 11:36
poj
喷水装置(二)
在它的橫向中心线上不同位置处装有n(n #include #include #include #include usingnamespacestd; structnode{ doublel,r; }p[
10010
menxiaoyuan
·
2015-11-01 20:00
数据结构
算法
排序
上一页
20
21
22
23
24
25
26
27
下一页
按字母分类:
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
其他