- 20 Jul 2014
POJ 1028 Web Navigation
题目 源地址: http://poj.org/problem?id=1028 理解 这是一道STL里面的栈的运用的一个模板题。构建两个栈,一... - 20 Jul 2014
POJ 1045 Bode Plot
题目 源地址: http://poj.org/problem?id=1045 理解 额- -,居然考到了物理公式。推倒的过程中,卡在了题目中... - 20 Jul 2014
POJ 2199 Rate of Return
题目 源地址: http://poj.org/problem?id=2199 理解 感觉题目并不是很难。给出n个月,每个月都存进去一定的钱,... - 18 Jul 2014
POJ 1047 Round and Round We Go
题目 源地址: http://poj.org/problem?id=1047 理解 一开始觉得很麻烦,打算用字符串+排序来处理是否符合题意。... - 18 Jul 2014
POJ 1306 Combinations
题目 源地址: http://poj.org/problem?id=1306 理解 高精度阶乘的题目,再次用java水掉= =。 代码 im... - 18 Jul 2014
POJ 1131 Octal Fractions
题目 源地址: http://poj.org/problem?id=1131 理解 题意挺简单,就是把八进制浮点数转化为十进制,同样是用高精... - 18 Jul 2014
POJ 1503 Integer Inquiry
题目 源地址: http://poj.org/problem?id=1503 理解 还是高精度计算,大数相加~ 代码 import java... - 18 Jul 2014
POJ 2305 Basic remains
题目 源地址: http://poj.org/problem?id=2305 理解 高精度计算题啊,用Java的高精度类水过。 代码 imp... - 18 Jul 2014
POJ 3048 Max Factor
题目 源地址: http://poj.org/problem?id=3307 理解 如果一个数可以通过其他数的各数字位相乘得到,则说这个数具... - 17 Jul 2014
POJ 2081 Recaman's Sequence
题目 源地址: http://poj.org/problem?id=2081 理解 简单的计算题。利用打表的方法,空间换时间。 代码 #in...