首页 > 2014年08月09日 > 全部分享
POJ Exponentiation(大浮点数JAVA轻松解决)
题目链接:Clicke Here~ java解决大数就是爽阿!~ 以前大数模板敲啊敲的,敲了半天发现一交果断wrong。只从学会了java妈妈在不用担心我遇到大数了/ 这道题遇到的Java函数有: stripTrailingZeros()            去掉后缀0 toPlainString()               返回大数的非科学计数法 startsWith() s...
分类:编程语言   时间:2014-08-09 21:36:19    收藏:0  评论:0  赞:0  阅读:408
UVA 401-- Palindromes--串处理
Palindromes  A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when t...
分类:其他   时间:2014-08-09 21:36:09    收藏:0  评论:0  赞:0  阅读:552
window应用移植到Linux下(应用移植)
?? 配置QT的环境变量,这台电脑à属性à高级系统设置à高级à环境变量à系统变量àpathàC:\Qt\Qt5.3.0\5.3\mingw482_32\bin;C:\Qt\Qt5.3.0\Tools\QtCreator\bin 创建一个QT项目:winAndLinuxMyUdpProject项目 修改QT的项目文件,修改winAndLinuxMyUdpProj...
分类:Windows开发   时间:2014-08-09 21:35:59    收藏:0  评论:0  赞:0  阅读:594
Cannot instantiate the type List<Integer>
在使用java.util.List; 的时候,把语句写成了:List arr = new List();导致错误:Cannot instantiate the type List正确写法是:List arr = new ArrayList();...
分类:其他   时间:2014-08-09 21:35:49    收藏:0  评论:0  赞:0  阅读:472
POJ2352_Stars(线段树/单点更新)
解题报告 题意: 求在坐标系中...
分类:其他   时间:2014-08-09 21:35:39    收藏:0  评论:0  赞:0  阅读:340
UVA 465-- Overflow (atof 函数)
Overflow  Write a program that reads an expression consisting of two non-negative integer and an operator. Determine if either integer or the result of the expression is too large to be rep...
分类:其他   时间:2014-08-09 21:35:29    收藏:0  评论:0  赞:0  阅读:380
ZOJ2724_Windows Message Queue(STL/优先队列)
解题报告 题意: 看输入输出就很明白。 思路: 优先队列。 #include #include #include #include #include #include #include #include using namespace std; struct node { char m[100]; int v,k; friend bool ope...
分类:Windows开发   时间:2014-08-09 21:35:19    收藏:0  评论:0  赞:0  阅读:449
Codeforces Round #260 (Div. 1) A. Boredom (DP)
Codeforces Round #260 (Div. 1) A. Boredom (DP)...
分类:其他   时间:2014-08-09 21:35:09    收藏:0  评论:0  赞:0  阅读:425
hdu2852--KiKi's K-Number(线段树,求第k个数)
KiKi's K-Number Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2546    Accepted Submission(s): 1174 Problem Description For the k-th...
分类:其他   时间:2014-08-09 21:34:59    收藏:0  评论:0  赞:0  阅读:449
HDU 1087 Super Jumping! Jumping! Jumping!(DP)
题意 求n个数字的和最大的递增子序列 基础的dp题目 令d[i]表示以第i个数字结尾的和最大的递增子序列 有d[i]=max(d[i],d[j]+a[i]) j为1到a之间的数 且a[i]>a[j]...
分类:其他   时间:2014-08-09 21:34:49    收藏:0  评论:0  赞:0  阅读:369
poj 1004 Dividing
题目大意是,从输入六个数 ,第i个数代表价值为i的有几个,平均分给两个人 ,明摆着的背包问题,本来以为把他转化为01背包,但是TLe,后来发现是12万的平方还多,所以妥妥的TLE,后来发现这是一个完全背包问题,然后即纠结了 ,没学过啊 ,最后发现思想好i是蛮简单的,水水的A掉了,最后注意一下初始化问题和输入问题后就好了 #include #include int a[10]; int dp[...
分类:其他   时间:2014-08-09 21:34:39    收藏:0  评论:0  赞:0  阅读:339
CodeForces 451D Count Good Substrings
题意: 一个只包含a和b的字符串  问  它有几个长度为偶数和长度为奇数的“压缩回文串”  压缩的概念是  相邻的相同字符压缩成一个字符 思路: 串经过压缩一定满足如下形式 ……ababab……  那么这样只要两端的字符相同则中间一定是回文的  因此对于一个a它作为左端点形成的回文串个数就等于它右边的a的个数  那么长度是奇数还是偶数呢  可以这么判断  如果a在奇数位置上和它匹配的a也在奇...
分类:其他   时间:2014-08-09 21:34:29    收藏:0  评论:0  赞:0  阅读:381
ZOJ1109_Language of FatMouse(STL/map)
解题报告 题意: 略。 思路: map应用。 #include #include #include #include #include #include #include #include using namespace std; mapMap; int main() { string str1,str2,str; int i,j; while...
分类:其他   时间:2014-08-09 21:34:19    收藏:0  评论:0  赞:0  阅读:408
HDU 4923 Room and Moor (多校第六场C题) 单调栈
Problem Description PM Room defines a sequence A = {A1, A2,..., AN}, each of which is either 0 or 1. In order to beat him, programmer Moor has to construct another sequence B = {B1, B2,... , BN} of...
分类:其他   时间:2014-08-09 21:34:09    收藏:0  评论:0  赞:0  阅读:354
Android开发之SpannableString详解
在实际的应用开发过程中经常会遇到,在文本的不同部分显示一些不同的字体风格的信息如:文本的字体、大小、颜色、样式、以及超级链接等。一般情况下,TextView中的文本都是一个样式,对于类似的情况,可以借助SpannableString或SpannableStringBuilder对象来实现以上设置。...
分类:移动平台   时间:2014-08-09 21:33:59    收藏:0  评论:0  赞:0  阅读:548
fzu-1753 Another Easy Problem-快速求N!中有多少个p
就是算出来每一个C(N,M)是由哪些数乘来的就好。。。。 #include #include #include #include #include #include #include #include using namespace std; #define LL long long #define lcm(a,b) (a*b/gcd(a,b)) //O(n)求素数,1-...
分类:其他   时间:2014-08-09 21:33:49    收藏:0  评论:0  赞:0  阅读:440
hdu 4296 Buildings(贪心)
hdu 4296 Buildings(贪心)...
分类:其他   时间:2014-08-09 21:33:39    收藏:0  评论:0  赞:0  阅读:386
HDU 4916 Count on the path
题意: 给定一棵树和m个询问  每个询问要求回答不在u和v两节点所形成的路径上的点的最小标号 思路: 一开始以为是LCA…  不过T了好几次…  后来发现不用LCA也可做 考虑每个询问u和v  如果他们的lca不是1  则1一定是答案  不过求lca会T  那么我们只需要在遍历树的时候给节点染色  染的颜色就是1的儿子的颜色  如果x这个点在y的子树中(y是1的儿子)那么他的颜色就是y ...
分类:其他   时间:2014-08-09 21:33:29    收藏:0  评论:0  赞:0  阅读:418
POJ Octal Fractions(JAVA水过)
题目链接:CLICK HERE~ 虽然java一下模拟水过,但是我看到别人的一段神奇代码,贴出和大家共享。 import java.math.*; import java.util.*; class Main{ public static void main(String args[]){ Scanner cin = new Scanner(System.in); BigDecim...
分类:编程语言   时间:2014-08-09 21:33:19    收藏:0  评论:0  赞:0  阅读:389
POJ训练计划3096_Surprising Strings(STL/map)
解题报告 题目传送门 题意: 给一个字符串,要求,对于这个字符串空隔为k取字符对(k=0,1,2,3,4...)要求在相同的空隔取对过程汇总,整个字符串中没有一个相同字符对如: ZGBZ: 间隔为0的字符对有: ZG、GB、BZ,三个均不相同 间隔为1的字符对有: ZG、 GZ,均不相同 间隔为2的字符对有: ZZ 仅有一个,不必比较。 这种字符串定义为...
分类:其他   时间:2014-08-09 21:33:09    收藏:0  评论:0  赞:0  阅读:406
1188条   上一页 1 ... 6 7 8 9 10 ... 60 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!