- 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 &l... - 23 Jul 2014
POJ 3273 Monthly Expense
题目 源地址: http://poj.org/problem?id=3273 理解 也是很久之前的一道题目,简单的二分。 代码 #inclu... - 23 Jul 2014
POJ 1905 Expanding Rods
题目 源地址: http://poj.org/problem?id=1905 理解 很久以前做的题目,是二分法最基础的运用。 代码 #inc... - 23 Jul 2014
POJ 2965 The Pilots Brothers' refrigerator
题目 源地址: http://poj.org/problem?id=2965 理解 参考的某神牛的解法: 证明: 要使一个为'+'的符号变为... - 23 Jul 2014
POJ 1423 Big Number
题目 源地址: http://poj.org/problem?id=1423 理解 又是大数据的题目,果断用Java来做,不过还是用到了取对...