- 23 Jul 2014
POJ 1401 Factorial
题目 源地址: http://poj.org/problem?id=1401 理解 一开始惊讶地发现,每个数除以4之后都跟答案比较接近,然后... - 23 Jul 2014
POJ 1326 Mileage Bank
题目 源地址: http://poj.org/problem?id=1326 理解 题目倒是不难,但是这个输入真的是。。。。 代码 #inc... - 23 Jul 2014
POJ 1061 青蛙的约会
题目 源地址: http://poj.org/problem?id=1061 理解 扩展欧几里德方程的模板体。当初没有做出来,现在好像明白一... - 23 Jul 2014
POJ 1318 Word Amalgamation
题目 源地址: http://poj.org/problem?id=1318 理解 一开始的思路有点偏,想要单纯的使用string类的com... - 23 Jul 2014
POJ 1316 Self Numbers
题目 源地址: http://poj.org/problem?id=1316 理解 水题,开一个数组模拟,水过~ 代码 #include &... - 23 Jul 2014
POJ 1298 史上最难的问题
题目 源地址: http://poj.org/problem?id=1298 理解 问题的纠结之处在于编译器根本就不给gets和puts改过... - 23 Jul 2014
POJ 1256 Anagram
题目 源地址: http://poj.org/problem?id=1256 理解 再次遇到一道使用next_permutation的题目,... - 23 Jul 2014
POJ 1247 Magnificent Meatballs
题目 源地址: http://poj.org/problem?id=1247 理解 让给的肉丸子少的人继续给,直到最后判断是否相等。 代码 ... - 22 Jul 2014
POJ 1218 THE DRUNK JAILER
题目 源地址: http://poj.org/problem?id=1218 理解 汗= =,偷鸡水过了,正好是牢房数的平方根向下取整,不过... - 22 Jul 2014
POJ 1163 The Triangle
题目 源地址: http://poj.org/problem?id=1163 理解 这是第一道关于DP的题目,据说是用暴力的方法会直接超时,...