将文本文件转换为UNICODE编码
*/
public class Native2asciiUtil {
/**
* @description 将文本文件转换成UNICODE编码支持UTF-8,Unicode,UTF-16BE,ANSI|ASCII,GBK...
分类:
其他好文 时间:
2014-08-09 21:36:29
阅读次数:
234
题目链接:Clicke Here~
java解决大数就是爽阿!~
以前大数模板敲啊敲的,敲了半天发现一交果断wrong。只从学会了java妈妈在不用担心我遇到大数了/
这道题遇到的Java函数有:
stripTrailingZeros() 去掉后缀0
toPlainString() 返回大数的非科学计数法
startsWith()
s...
分类:
编程语言 时间:
2014-08-09 21:36:19
阅读次数:
371
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
阅读次数:
344
??
配置QT的环境变量,这台电脑à属性à高级系统设置à高级à环境变量à系统变量àpathàC:\Qt\Qt5.3.0\5.3\mingw482_32\bin;C:\Qt\Qt5.3.0\Tools\QtCreator\bin
创建一个QT项目:winAndLinuxMyUdpProject项目
修改QT的项目文件,修改winAndLinuxMyUdpProj...
在使用java.util.List; 的时候,把语句写成了:List arr = new List();导致错误:Cannot instantiate the type List正确写法是:List arr = new ArrayList();...
分类:
其他好文 时间:
2014-08-09 21:35:49
阅读次数:
304
解题报告
题意:
求在坐标系中...
分类:
其他好文 时间:
2014-08-09 21:35:39
阅读次数:
293
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
阅读次数:
321
解题报告
题意:
看输入输出就很明白。
思路:
优先队列。
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
struct node {
char m[100];
int v,k;
friend bool ope...
Codeforces Round #260 (Div. 1) A. Boredom (DP)...
分类:
其他好文 时间:
2014-08-09 21:35:09
阅读次数:
379
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
阅读次数:
264
题意 求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
阅读次数:
202
题目大意是,从输入六个数 ,第i个数代表价值为i的有几个,平均分给两个人 ,明摆着的背包问题,本来以为把他转化为01背包,但是TLe,后来发现是12万的平方还多,所以妥妥的TLE,后来发现这是一个完全背包问题,然后即纠结了 ,没学过啊 ,最后发现思想好i是蛮简单的,水水的A掉了,最后注意一下初始化问题和输入问题后就好了
#include
#include
int a[10];
int dp[...
分类:
其他好文 时间:
2014-08-09 21:34:39
阅读次数:
198
题意:
一个只包含a和b的字符串 问 它有几个长度为偶数和长度为奇数的“压缩回文串” 压缩的概念是 相邻的相同字符压缩成一个字符
思路:
串经过压缩一定满足如下形式 ……ababab…… 那么这样只要两端的字符相同则中间一定是回文的 因此对于一个a它作为左端点形成的回文串个数就等于它右边的a的个数 那么长度是奇数还是偶数呢 可以这么判断 如果a在奇数位置上和它匹配的a也在奇...
分类:
其他好文 时间:
2014-08-09 21:34:29
阅读次数:
233
解题报告
题意:
略。
思路:
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
阅读次数:
277
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
阅读次数:
365
在实际的应用开发过程中经常会遇到,在文本的不同部分显示一些不同的字体风格的信息如:文本的字体、大小、颜色、样式、以及超级链接等。一般情况下,TextView中的文本都是一个样式,对于类似的情况,可以借助SpannableString或SpannableStringBuilder对象来实现以上设置。...
分类:
移动开发 时间:
2014-08-09 21:33:59
阅读次数:
298
就是算出来每一个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
阅读次数:
295