What would cause a tableview cell to remain highlighted after being touched? I click the cell and can see it stays highlighted as a detail view is pus...
分类:
其他好文 时间:
2014-07-12 00:07:16
阅读次数:
185
00编写一个程序,这次要求使用pickle将文件(record.txt)里的对话按照以下要求腌制成不同文件:小甲鱼的对话单独保存为boy_*.txt的文件(去掉“小甲鱼:”)小客服的对话单独保存为girl_*.txt的文件(去掉“小客服:”)文件中总共有三段对话,分别保存为boy_1.txt, gi...
分类:
其他好文 时间:
2014-07-11 22:54:36
阅读次数:
272
在运行项目的时候,eclipse弹出提示框“Could not open Selected VM debug port (8700). Make sure you do not have another instance of DDMS or of the eclipse plugin running. If it's being used by something else, choose a new port number in the preferences.”
在终端输入:netstat -ano ...
分类:
其他好文 时间:
2014-07-10 23:03:07
阅读次数:
432
Area
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 4713
Accepted: 2129
Description
Being well known for its highly innovative products, Merck would def...
分类:
其他好文 时间:
2014-07-09 12:53:50
阅读次数:
179
Area
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 4725
Accepted: 2135
Description
Being well known for its highly innovative products, Merck would defin...
分类:
其他好文 时间:
2014-07-09 11:21:01
阅读次数:
234
Area
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 4717
Accepted: 2131
Description
Being well known for its highly innovative products, Merck would defin...
分类:
其他好文 时间:
2014-07-09 09:50:21
阅读次数:
174
http://acm.hdu.edu.cn/showproblem.php?pid=4722
大致题意:若一个整数的各位数字之和是10的倍数,称这个数为"good number"。给出区间[A,B],求出该区间内"good number"的数的个数。
第一道数位dp,折腾了半天才明白怎么回事。
设dp[site][mod]表示到第site位(由高位向低位)前面各位数字之和对1...
分类:
其他好文 时间:
2014-07-08 20:46:41
阅读次数:
223
题解转自:http://blog.csdn.net/dyx404514/article/details/8807440
2012杭州网络赛的一道题,后缀数组后缀自动机都行吧。
题目大意:给一个字符串S和一系列字符串T1~Tn,问在S中有多少个不同子串满足它不是T1~Tn中任意一个字符串的子串。
思路:我们先构造S的后缀自动机,然后将每一个Ti在S的SAM上做匹配,类...
分类:
其他好文 时间:
2014-07-08 20:27:04
阅读次数:
288
找到规律之后本题就是水题了,不过找规律也不太容易的,证明这个规律成立更加不容易。
本题就是求step和mod如果GCD(最大公约数位1)那么就是Good Choice,否则为Bad Choice
为什么这个结论成立呢?
因为当GCD(step, mod) == 1的时候,那么第一次得到序列:x0, x0 + step, x0 + step…… 那么mod之后,必然下一次重复出现比x0大的数必...
分类:
其他好文 时间:
2014-07-08 19:16:21
阅读次数:
227
main() { char s[30]; strcpy(s, "Good News!"); /*给数组赋字符串*/ . . . } 上面程序在编译时, 遇到char s[30]这条语句时, 编译程序会在内存的某处留 出连续30个字节的区域, 并将第一个字节的地址赋给s。当遇到strcpy( strc...
分类:
其他好文 时间:
2014-07-08 10:29:02
阅读次数:
327