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
Sums
给你两个数 a 和 b , 请你计算 a b 之间所有数的数字之和
多组测试数据,每个数据仅一行一行有两个数a,b(0longlongsum(longlongnum){longlongsums=0;//printf("/t%lldis",num);while(num){
sums
dualeak
·
2009-11-09 21:00
算法笔记
背包算法+容差
index by binary_integer; res test_t; l_row binary_integer:=1;
sums
郭清明
·
2009-09-03 22:00
算法
J#
背包算法+接近过程
index by binary_integer; res test_t; l_row binary_integer:=1;
sums
郭清明
·
2009-09-01 23:00
算法
J#
USACO 2.2 Subset
Sums
USACO2.2SubsetSums动态规划经典题子集和问题。求子集和为总数的一半的子集的个数,按题意,还要再除以2。int会溢出,要用longlong.第一次提交就没有注意到这个问题。#include #include using namespace std;ifstream fin("subset.in");ofstream fout("subset.out");#ifdef _DEBUG#d
止于自娱
·
2009-06-20 17:00
POJ ACM习题【No.2140】
Herd
Sums
Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8376 Accepted:
joe_zxy
·
2009-04-25 21:00
J#
UP
Section 2.2 - Subset
Sums
1 #include 2 3 using namespace std; 4 5 int main() 6 { 7 freopen("subset.in", "r", stdin); 8 freopen("subset.out", "w", stdout); 9 10 int n, m;11 12 cin >> n;13 14 m = (1 + n)
superman
·
2009-03-30 13:00
查询表空间使用情况
Select Owner,Tablespace_name,Segment_Name,Segment_Type,Sum(bytes)/1024/1024
sums
From Dba_Extents  
aviva
·
2009-03-24 09:00
html
Microsoft
Multi select elements which
sums
upto a certain number from an array(II)
Give an array and a certain number,how to select some of the elements to
sums
upto the number?
ihuashao
·
2009-02-03 20:00
.net
Excel
Blog
Multi select elements which
sums
upto a certain number from an array(II)
Give an array and a certain number,how to select some of the elements to
sums
upto the number?
ihuashao
·
2009-02-03 20:00
.net
Excel
Blog
usaco 2.2 Subset
Sums
背包问题dp,s[i][j]表示前i个数和为j的方案。s[i][j]=s[i-1][j]+s[i-1][j-i] ij
Headacher
·
2008-11-29 00:00
ACM 2140 Herd
Sums
计算一个数N由连续数相加的方案数,通过递归加上适当的剪枝可以实勉强实现了,差点超时了。。。#include #include #include #include using namespace std;int count;void getCount(long int current,long int start,bool fst) //fst代表是否为第一轮查找,若不是,之后只要有一个数不连续则
啥也别说了
·
2008-11-28 02:00
Multi select elements which
sums
upto a certain number from an array
Give an array and a certain number,how to select some of the elements to
sums
upto the number?
ihuashao
·
2008-11-25 19:00
element
PHP分页函数
//分页函数 functiongenpage(&$sql,$page_size=20) { global$prepage,$nextpage,$pages,$
sums
;//outparam
webcode
·
2008-09-14 21:00
sql
PHP
mysql
usaco 2.2 Subset
Sums
usaco2.2SubsetSums这个题就是一个dp问题我们用data[i][j]表示前i个数字构成j的方案数这样的话可以得到状态转移方程data[i][j]=data[i-1][j-i]+data[i-1][j];边界条件就是当j等于0的时候data[i][j]=1;当i等于0的时候j不等于0data[i][j]=0;然后提交的时候忘记测39这个数据了造成wa了一次因为求出来的是需要除2的而3
暑假训练之记录
·
2008-07-19 02:00
TOJ 2236 Partial
Sums
解题
TOJ2236PartialSums解题组合数学问题处理之前先对整个队列求一个和;然后对每一个部分和统计一下 1#include 2#include 3 4int seq[100100]; 5int md[6000]; 6 7long long jx(long long x) { 8 return x*(x+1)/2; 9}10int main() {11 int n, l, u;
暑假训练之记录
·
2008-07-15 19:00
编程语言EF速度测试(6):partial-
sums
这是一个专门的编程语言/编译器速度测试/对比网站(http://shootout.alioth.debian.org/)给出的题目, 以下是EF源代码: import 工具; //partial-
sums
ruilin215
·
2008-07-03 23:00
编程
C++
c
PHP
Debian
编程语言EF速度测试(6):partial-
sums
这是一个专门的编程语言/编译器速度测试/对比网站(http://shootout.alioth.debian.org/)给出的题目, 以下是EF源代码: import 工具; //partial-
sums
csstome
·
2008-07-03 23:00
编程
C++
c
PHP
Debian
HOJ 1401Gigantic
Sums
HOJ1401GiganticSums把#include改成#include会超内存题目意思:求两个数的和,按位相加,边加边输出,找一个变量存9的个数下面是代码 1#include 2 3int main() 4{ 5 int n,num,a,b,temp,sum = 0,start = 0; 6 int i; 7 8 while(scanf("%d",&n)==1) 9
听说经常总结是个好习惯
·
2008-06-26 17:00
Select m elements from max elements with limits
I have max integers between 1 and max, If I choose m of them to get a sum
sums
,Suppose
cjc
·
2006-10-27 21:00
J#
Select m elements from max elements with limits
I have max integers between 1 and max, If I choose m of them to get a sum
sums
,Suppose
eimhee
·
2006-10-27 21:00
J#
Select m elements from max elements with limits
I have max integers between 1 and max, If I choose m of them to get a sum
sums
,Suppose I have counts
ihuashao
·
2006-10-27 21:00
J#
一些SQL语句
execxp_cmdshell'dirc:\'可执行DOS的命令,如删除,创建,复制等等------存储过程实例一(加法运算)createprocedurepr_sss@n1smallint,@n2smallint,@
sums
Nothing is impossible for a willing heart
·
2006-09-29 22:00
MDK 10.1版,简单硬盘安装法(图形界面)
MDK10.1版,简单硬盘安装法(图形界面)1、用md5
sums
.exefilename.iso命令,验证ISO文件的MD5码是否正确。2、把几个ISO文件都解压到同一个目录中,比如MDK10。
35号房客
·
2005-01-19 14:00
Mandrake Linux 10硬盘ISO安装(转)
采用以下安装方法将无须软驱、光驱,不解压、无需手工更换ISO文件,硬盘启动安装(图形界面)1、用md5
sums
.exefilename.iso命令,验证ISO文件MD5码的正确性。
devercn
·
2004-08-20 01:00
Mandrake Linux 10硬盘ISO安装(转)
采用以下安装方法将无须软驱、光驱,不解压、无需手工更换ISO文件,硬盘启动安装(图形界面)1、用md5
sums
.exefilename.iso命令,验证ISO文件MD5码的正确性。
devercn
·
2004-08-20 01:00
linux
ext
dos
disk
图形
c
技术交流
关于天文数字十进制与十六进制间的转换
Dim largehex As String, largedec As String, start As Long, Y(20) As String '预备函数Function
sums
(ByVal
ihuashao
·
2004-05-17 17:00
IE
关于天文数字十进制与十六进制间的转换
Dim largehex As String, largedec As String, start As Long, Y(20) As String '预备函数Function
sums
(ByVal
cjc
·
2004-05-17 17:00
IE
关于天文数字十进制与十六进制间的转换
Dim largehex As String, largedec As String, start As Long, Y(20) As String '预备函数Function
sums
(ByVal
eimhee
·
2004-05-17 17:00
IE
上一页
8
9
10
11
12
13
14
15
下一页
按字母分类:
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
其他