码迷,mamicode.com
首页 >  
搜索关键字:perfect    ( 572个结果
279. Perfect Squares
题目:Given a positive integern, find the least number of perfect square numbers (for example,1, 4, 9, 16, ...) which sum ton.For example, givenn=12, ret...
分类:其他好文   时间:2015-12-10 13:02:13    阅读次数:138
The Fallacy of Perfect Execution
The Fallacy of Perfect ExecutionDavid Wood Fredericksburg, Virginia, U.S. IF YOU THINK YOU CAN CREATE FLAWLESS CODE if you work hard enough, don’t be embarrassed. Many others have thought so, too. Unf...
分类:其他好文   时间:2015-12-07 10:34:33    阅读次数:186
1085. Perfect Sequence (25)
自己想的比较好的一个算法,时间大大节省时间限制300 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CAO, PengGiven a sequence of positive integers and another positive integer p. The...
分类:其他好文   时间:2015-12-06 12:53:37    阅读次数:121
POJ_1274_二分匹配题解
POJ_1274_二分匹配题解 The Perfect Stall
分类:其他好文   时间:2015-12-04 01:00:55    阅读次数:250
[LeetCode] Perfect Squares
Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n.For example, given n = 12, return 3 because 12 = 4 + 4 + 4; given n = 13, retu...
分类:其他好文   时间:2015-11-06 21:05:22    阅读次数:227
leetcode@ [279]Perfect Squares
https://leetcode.com/problems/perfect-squares/Given a positive integern, find the least number of perfect square numbers (for example,1, 4, 9, 16, ......
分类:其他好文   时间:2015-11-02 15:28:38    阅读次数:165
[CCC 1996 01]Deficient, Perfect, and Abundant
CCC加拿大高中生信息学奥赛其余来源 CODEVS[3312]——CCC 1996 01 Deficient, Perfect, and Abundant ——http://codevs.cn/problem/3312/ POJ[1928]——Perfection——http://poj.org.....
分类:其他好文   时间:2015-10-24 11:16:22    阅读次数:206
ubuntu14.04 下emacs 24 配置
目的: 配置emacs 24 适合编程开发主要参考JerryZhang的配置(Emacs 简易教程)http://www.perfect-is-shit.com/emacs-simple-tutorial.html#tocAnchor-1-16-5https://gitcafe.com/JerryZ...
分类:系统相关   时间:2015-10-15 18:13:36    阅读次数:326
poj1543-Perfect Cubes(暴力)
水题:求n^3 = a^3 + b^3 + c^3 ;暴力即可 1 #include 2 using namespace std; 3 int main(){ 4 int n ; 5 cin>>n; 6 for(int i = 3 ; i <= n ; i++){ 7 ...
分类:其他好文   时间:2015-10-15 16:00:17    阅读次数:131
二分图最大匹配——匈牙利算法
这篇文章讲无权二分图(unweighted bipartite graph)的最大匹配(maximum matching)和完美匹配(perfect matching),以及用于求解匹配的匈牙利算法(Hungarian Algorithm);不讲带权二分图的最佳匹配。二分图:简单来说,如果图中点可以...
分类:编程语言   时间:2015-10-10 11:54:16    阅读次数:132
572条   上一页 1 ... 39 40 41 42 43 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!