Code
- 02 Aug 2014
POJ 1979 Red and Black
题目 源地址: http://poj.org/problem?id=1979 理解 一个比较简单的DFS练习题 代码 #include <i... - 25 Jul 2014
POJ 1528 Perfection
题目 源地址: http://poj.org/problem?id=1528 理解 一个数n的正因数之和等于n则输出PERFECT 大于n,... - 25 Jul 2014
POJ 1519 Digital Roots
题目 源地址: http://poj.org/problem?id=1519 理解 这不就是弃九法么。把每个位置上数字相加迭代即可,但是多次... - 25 Jul 2014
POJ 1517 u Calculate e
题目 源地址: http://poj.org/problem?id=1517 理解 计算e的值。太自信,没有用打表,结果WA了两发,蛋疼。 ... - 25 Jul 2014
POJ 1504 Adding Reversed Numbers
题目 源地址: http://poj.org/problem?id=1504 理解 同样是长长的题目,其实是要求把数字从左到右相加,本质是要... - 25 Jul 2014
POJ 1493 Machined Surfaces
题目 源地址: http://poj.org/problem?id=1493 理解 题目虽然这么长,但是意思很简单,就是求左右合并之后中间剩... - 24 Jul 2014
POJ 2891 Strange Way to Express Integers
题目 源地址: http://poj.org/problem?id=2891 理解 做的第一道关于扩展欧几里德方程的题目,还不够。 代码 #... - 23 Jul 2014
POJ 3518 Prime Gap
题目 源地址: http://poj.org/problem?id=3518 理解 虽然看起来并没有二分计算的代码,但是应用了二分的思想。设... - 23 Jul 2014
POJ 3122 Pie
题目 源地址: http://poj.org/problem?id=3122 理解 这也是一道水题,二分切之。 代码 #include <s... - 23 Jul 2014
POJ 3273 Monthly Expense
题目 源地址: http://poj.org/problem?id=3273 理解 也是很久之前的一道题目,简单的二分。 代码 #inclu...