码迷,mamicode.com
首页 >  
搜索关键字:number    ( 26994个结果
POJ 3252 Round Numbers 数位dp
http://poj.org/problem?id=3252题意:问从a到b有多少个round number。如果某数的二进制表示中0的个数不少于1的个数,那么它就是一个round number。分析:数位dp。就我目前碰到的几道数位dp来说,其实所谓数位dp,就是和组合数有联系的递推罢了。还是转换...
分类:其他好文   时间:2014-08-28 19:45:55    阅读次数:232
codeigniter实现ajax分页
total_rows == 0 OR $this->per_page == 0) { return ''; } // Calculate the total number of pages $num_pages = ceil($this->total_rows / ...
分类:其他好文   时间:2014-08-28 18:03:15    阅读次数:354
JQuery DOM 的常用操作
一、JQuery对象的基本方法:(1) get(); 取得所有匹配的元素(2) get(index); 取得其中一个匹配的元素 $(this).get(0) 等同于 $(this)[0](3) Number index(jqueryObj); 搜索子对象(4) each(callback); 类似f...
分类:Web程序   时间:2014-08-28 18:00:15    阅读次数:305
Leetcode:Edit Distance 字符串编辑距离
原题戳我Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.)You ha...
分类:其他好文   时间:2014-08-28 13:04:59    阅读次数:162
codechef Sums in a Triangle题解
Let's consider a triangle of numbers in which a number appears in the first line, two numbers appear in the second line, three in the third line, etc....
分类:其他好文   时间:2014-08-28 13:03:29    阅读次数:218
poj 1019 Number Sequence , 二分
从下面这一有规律的串中,查找第i(1 ≤ i ≤ 2147483647)个为的数是什么? 11212312341234512345612345671234567812345678912345678910123456789101112345678910...... 二分 #include #include #include #include #include using namespa...
分类:其他好文   时间:2014-08-28 11:30:49    阅读次数:176
TopCoder SRM 144 DIV 2
200: Problem Statement   Computers tend to store dates and times as single numbers which represent the number of seconds or milliseconds since a particular date. Your task in this ...
分类:其他好文   时间:2014-08-28 11:27:29    阅读次数:244
adf常用方法总结
1.使用clientAttribute传值、获取值 或组件上面放客户端属性 public void onSelect(ValueChangeEvent valueChangeEvent) { Number id = (Number)valueChangeEvent.getComponent()...
分类:其他好文   时间:2014-08-28 11:23:59    阅读次数:485
Lingo 优化实例 出版社问题
model: data: LY_K=0.002; enddata sets: !1-72个科目每个科目的书号数; number/1..72/:anum; link(number); !每个书号的平均价格; price/1..72/:p; !单位书号的销售量 预测2006年的; perSH/1..72...
分类:其他好文   时间:2014-08-28 11:14:59    阅读次数:302
[leetcode]Single Number @ Python
原题地址:http://www.cnblogs.com/x1957/p/3373994.html题意:Given an array of integers, every element appearstwiceexcept for one. Find that single one.要求:线性时间复...
分类:编程语言   时间:2014-08-28 11:04:19    阅读次数:274
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!