这一次又只出了一题,第二题没有分析好,竟然直接copy代码,不过长见识了。。
第一题给了一些限制条件,自己没有分析好,就去乱搞,结果各种不对,后来有读题才发现。。暴力乱搞。。
题目:
Beautiful Palindrome Number
Time Limit: 3000/1500 MS (Java/Others) Memory Limit: 32768/32768 K ...
分类:
其他好文 时间:
2014-10-16 00:46:21
阅读次数:
382
题目:Determine whether an integer is a palindrome. Do this without extra space. 刚开始看到题目的时候想着用栈来处理,每进来一个数与栈顶元素比较相同则栈顶元素处栈,不同则元素入栈,最后栈为空或剩一个数为真,我是以“12343....
分类:
编程语言 时间:
2014-10-15 19:45:31
阅读次数:
249
Valid Palindrome
Total Accepted: 22728 Total
Submissions: 99271My Submissions
Question
Solution
Given a string, determine if it is a palindrome, considering only alphanumeric char...
分类:
其他好文 时间:
2014-10-14 18:21:29
阅读次数:
218
[leetcode]Determine whether an integer is a palindrome. Do this without extra space....
分类:
其他好文 时间:
2014-10-14 12:32:38
阅读次数:
137
Problem:Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindr...
分类:
其他好文 时间:
2014-10-13 12:18:49
阅读次数:
100
Palindrome Partitioning
Total Accepted: 21056 Total
Submissions: 81036My Submissions
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all...
分类:
其他好文 时间:
2014-10-13 11:18:20
阅读次数:
173
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5062题目意思:给出 N,找出 1 ~ 10^N 中满足 Beautiful Palindrome Numbers (BPN)的数量有多少。 满足 BPN 的条件有两个:(1)回文串 (2)对称的部分从....
分类:
其他好文 时间:
2014-10-12 13:30:28
阅读次数:
185
Beautiful Palindrome Number
Time Limit: 3000/1500 MS (Java/Others) Memory Limit: 32768/32768
K (Java/Others)
...
分类:
其他好文 时间:
2014-10-12 11:38:27
阅读次数:
173
第一道题 Beautiful Palindrome Number,简单组合计数问题,手算打表就好~【第一次 提交竟然 wa了一次 有一个小小的坑在那。。。。 1 /********************************* 2 Author: jusonalien 3 Email : ju....
分类:
其他好文 时间:
2014-10-12 00:35:47
阅读次数:
349
题目链接:http://poj.org/problem?id=1159思路: 对该问题的最优子结构与最长回文子序列相同。根据最长回文子序列的状态方程稍加改变就可以得到该问题动态方程。代码:#include #include const int MAX_N = 5000 + 10;int dp[MA....
分类:
其他好文 时间:
2014-10-11 02:49:14
阅读次数:
183