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
cstdio
hdu1798几何公式
/* * hdu1798/win.cpp * Created on: 2012-7-9 * Author : ben */ #include <
cstdio
> #include
·
2015-11-12 09:16
HDU
hdu1787赤裸裸的欧拉涵数
/* * hdu1787/win.cpp * Created on: 2012-7-9 * Author : ben */ #include <
cstdio
> #include
·
2015-11-12 09:15
HDU
hdu1725大水题
/* * hdu1725/win.cpp * Created on: 2012-7-6 * Author : ben */ #include <
cstdio
> #include
·
2015-11-12 09:14
HDU
hdu2669扩展欧几里得
/* * hdu2669/win.cpp * Created on: 2012-7-6 * Author : ben */ #include <
cstdio
> #include
·
2015-11-12 09:13
HDU
hdu1724定积分
/* * hdu1724/win.cpp * Created on: 2012-7-6 * Author : ben */ #include <
cstdio
> #include
·
2015-11-12 09:12
HDU
hdu 1596 最短路
直接上代码 /* * hdu1596/win.cpp * Created on: 2011-12-5 * Author : ben */#include <
cstdio
>#include
·
2015-11-12 09:07
HDU
hdu 1575 矩阵快速幂
直接上模板 /* * hdu1575/win.cpp * Created on: 2011-11-24 * Author : ben */#include <
cstdio
>#include
·
2015-11-12 09:04
HDU
hdu 1576
/* * hdu1576/win.cpp * Created on: 2011-11-28 * Author : ben */#include <
cstdio
>#include <
·
2015-11-12 09:04
HDU
hdu 1541 简单题
简单题,直接贴代码 /* * hdu1541/win.cpp * Created on: 2011-11-14 * Author : ben */#include <
cstdio
>
·
2015-11-12 09:00
HDU
hdu 1525 博弈
/* * hdu1525/win.cpp * Created on: 2011-11-11 * Author : ben */#include <
cstdio
>#include <
·
2015-11-12 09:59
HDU
hdu 1556
/* * hdu1556/win.cpp * Created on: 2011-11-13 * Author : ben */#include <
cstdio
>#include <
·
2015-11-12 09:59
HDU
hdu1518 bjfuoj1042 zoj1909 poj2362 经典的搜索加剪枝
又调了好长时间,才过掉其它OJ上的这道题目~ /* * hdu1518/win.cpp * Created on: 2011-11-8 * Author : ben */#include <
cstdio
·
2015-11-12 09:57
poj
hdu 1213 简单并查集
/* * hdu1213/win.cpp * Created on: 2011-11-5 * Author : ben */#include <
cstdio
>#include <
·
2015-11-12 09:56
HDU
hdu 1847
仔细一看,n才1000,直接暴力过了~ /* * hdu1847/win.cpp * Created on: 2011-10-27 * Author : ben */#include <
cstdio
·
2015-11-12 09:54
HDU
hdu1730 Northcott Game,Nim-sum
#include<cmath> #include<
cstdio
> #include<cstring> #include<algorithm> usi
·
2015-11-12 08:06
game
CF Gym 100500A Poetry Challenge
#include<
cstdio
> #include<cmath> #include<vector> #include<map> #include&
·
2015-11-12 08:16
try
CF Gym 100500H ICPC Quest
#include<
cstdio
> #include<cstring>
·
2015-11-12 08:15
ICPC
杭电acm the area
这题直接使用积分的方法来做,不需要考虑交叉点和顶点重合的情况: 不能使用float作为变量,否则一直wa #include<iostream> #include<
cstdio
&
·
2015-11-11 19:49
ACM
不重复排列
输入n个数值,输出由这n个数构成的排列,不允许出现重复的项 输入 3 1 1 2 输出 1 1 2 1 2 1 2 1 1 代码 #include<
cstdio
> #include
·
2015-11-11 19:08
重复
全排列
样例输入 3 1 2 3 输出 1 2 3 1 3 2 2 1 3 2 3 1 3 1 2 3 2 1 /* 1...n全排列,不计算是否有重复 */ #include<
cstdio
·
2015-11-11 19:08
全排列
一般组合
输入n个数,从中选出m个数可构成集合,输出所有这样的集合 输入 4 3 1 2 3 4 输出 1 2 3 1 2 4 1 3 4 2 3 4 #include<
cstdio
>
·
2015-11-11 19:07
组合
全组合
输入n个数,求这n个数构成的集合的所有自己 3 1 2 3 输出 1 1 2 1 2 3 1 3 2 2 3 3 #include<
cstdio
> #include
·
2015-11-11 19:06
组合
建树
输入从根节点开始的路径,输出层次遍历的结果 样例输入 (3,L) (2,R) () 输出: 1 3 2 指针实现 #include<
cstdio
> #include<
·
2015-11-11 19:05
树
不重复的组合
输入n个数,求这n个数构成的集合的所有子集,不允许输出重复的项 输入 3 1 1 3 输出 1 1 1 1 1 3 1 3 3 代码: #include<
cstdio
>
·
2015-11-11 19:05
组合
UVA11396-Claw Decomposition(二分图判定)
思路:当图分解成类干个爪型时,每条边仅仅属于一个爪子,所以每条边的两个点一定要处于2个不同的鸡爪中 代码: #include <iostream> #include <
cstdio
·
2015-11-11 19:28
position
【模板】【网络流】Dinic
6 */ 7 #include <iostream> 8 #include <
cstdio
> 9 #include <algorithm> 10
·
2015-11-11 19:33
dinic
【模板】【凸包】Graham_scan
平生不下泪,于此泣无穷. 6 */ 7 #include <iostream> 8 #include <
cstdio
> 9 #include <algorithm
·
2015-11-11 19:32
模板
树状DP
12186 工人的请愿书 下属中不小于 T% 的人签字时会签字递给上级,问至少需要多少人签字才能传给老板 #include <iostream> #include <
cstdio
·
2015-11-11 19:31
dp
poj 3778
#include <iostream> #include <
cstdio
> #inc
·
2015-11-11 19:30
poj
最优矩阵链乘
id=1651 #include <iostream> #include <
cstdio
> #include <cstrin
·
2015-11-11 19:29
矩阵
poj2823_单调队列简单入门
id=2823 #include<iostream> #include<
cstdio
> #define M 1000001 using namespace std;
·
2015-11-11 19:31
poj
uva514(trail)(模拟栈)
1 //#define LOCAL 2 #include<
cstdio
> 3 #include<cstring> 4 #include<cstdlib>
·
2015-11-11 19:13
uva
一个程序,让你理解运算符重载操作
1 //实现运算符重载 2 #include<iostream> 3 #include<
cstdio
> 4 using namespace std; 5 namespace
·
2015-11-11 19:29
运算符
uva 11892 - ENimEN(推理)
#include <
cstdio
> #inclu
·
2015-11-11 19:33
uva
HDU 2167 Pebbles
#include <
cstdio
·
2015-11-11 19:30
HDU
HDU 5059 Help him
#include <
cstdio
> #include <cstring> char s[150],ss[150]; in
·
2015-11-11 19:29
help
HDU 5056 Boring count
#include <
cstdio
> #include <cstring> using namespace std; typedef long long LL; LL ans
·
2015-11-11 19:28
count
HDU 5058 So easy
#include <
cstdio
> #include <map> using namespace std; map<int,int> a,b; int t[105
·
2015-11-11 19:28
HDU
HDU 5055 Bob and math problem
#include <
cstdio
> int t,n,a[10]; int main(){ while(~scanf("%d",&n)){
·
2015-11-11 19:27
Math
HDU 5019 Revenge of GCD
#include <
cstdio
> #include <algorithm> typedef long long LL; LL a1[1000005],a2[1000005
·
2015-11-11 19:26
HDU
HDU 5018 Revenge of Fibonacci
#include <
cstdio
> #include <algorithm> using namespace std; int main(){ int T;
·
2015-11-11 19:26
fibonacci
HDU 1556 Color the ball
#include <
cstdio
> #include <cstring> int c[100005],a,b,n; int modify(int x,int num){while
·
2015-11-11 19:25
color
HDU 1019 Least Common Multiple
#include <
cstdio
> int T,n,a,b; int gcd(int a,int b){if(b==0)return a;return gcd(b,a%b);} int
·
2015-11-11 19:24
com
HDU 1012 u Calculate e
题解:直接模拟 #include <
cstdio
> int main(){ puts("n e");puts("- -----------"
·
2015-11-11 19:23
HDU
HDU 1032 The 3n + 1 problem
题解:简单模拟 #include <
cstdio
> #include <algorithm> using namespace std; int main(){
·
2015-11-11 19:23
HDU
HDU 1076 An Easy Task
题解:枚举即可…… #include <
cstdio
> int main(){ int now,y,n,T,count; scanf("%d",&
·
2015-11-11 19:22
task
HDU 1060 Leftmost Digit
#include <
cstdio
> #include <cmath> int T;double n; int main(){ scanf("%d"
·
2015-11-11 19:21
left
HDU 1008 Elevator
题解:简单模拟 #include <
cstdio
> int main(){ int n,tmp,ans,now,pre; while(~scanf
·
2015-11-11 19:21
HDU
HDU 1042 N!
#include <
cstdio
> #include <cstring> const int mod=10000; int l,n,a[1000000]; int main
·
2015-11-11 19:20
HDU
HDU 1040 As Easy As A+B
#include <
cstdio
> #include <algorithm> using namespace std; int T,a[1005],n; int main
·
2015-11-11 19:19
HDU
上一页
63
64
65
66
67
68
69
70
下一页
按字母分类:
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
其他