A message containing letters fromA-Zis being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message conta...
分类:
其他好文 时间:
2015-02-09 15:23:33
阅读次数:
132
Activity IndicatorsAn activity indicator is a spinning wheel that indicates a task is in the midst of being processed. If an action takes a noticeable...
分类:
其他好文 时间:
2015-02-08 20:42:48
阅读次数:
303
描述
矮人们平时有走亲访友的习惯。一天,矮人国要修一条高速公路,矮人们希望他们走亲访友的时候,能够不必穿越高速公路,这样会更安全一些。现在有M个高速公路的修建方案,请你判断这M条高速功能是否能满足矮人们的期望。也就是说给出平面上的N个点(矮人们的住所位置),对于M条直线(高速公路),依次判断这N个点是否在每条直线的同一侧。是输出GOOD,不是输出BAD。 题解
首先可以想出一个...
分类:
其他好文 时间:
2015-02-08 14:08:49
阅读次数:
258
http://acm.hdu.edu.cn/showproblem.php?pid=1850题意:同nim...顺便求方案数...#include #include using namespace std;int a[105];int main() { int n; while(scanf("%d"...
分类:
编程语言 时间:
2015-02-06 23:08:32
阅读次数:
172
http://acm.hdu.edu.cn/showproblem.php?pid=1847题意:同nim..不过只有一堆..每次取2的幂次..即1、2、4....等,n#include using namespace std;int f[1005];int dfs(int n) { if(n==0...
分类:
其他好文 时间:
2015-02-06 23:08:24
阅读次数:
152
Problem Description
As a unicorn, the ability of using magic is the distinguishing feature among other kind of pony. Being familiar with composition and decomposition is the fundamental course ...
分类:
移动开发 时间:
2015-02-06 21:52:01
阅读次数:
226
用#宏,见代码#include #define enum_to_string(x) #xenum sex{ boy, girl,};int main(){ std::cout << enum_to_string(sex::boy) << std::endl; system("...
分类:
编程语言 时间:
2015-02-06 18:21:19
阅读次数:
194
List操作:ten_things="ApplesOrangesCrowsTelephoneLightSugar"
print"Waittherearenot10thingsinthatlist.Let‘sfixthat."
stuff=ten_things.split(‘‘)
more_stuff=["Day","Night","Song","Frisbee","Corn","Banana","Girl","Boy"]
whilelen(stuff)!=10:
next_one=more_stuff...
分类:
编程语言 时间:
2015-02-06 16:55:33
阅读次数:
150
http://stackoverflow.com/questions/9099892/how-to-use-tformatsettings-create-without-being-specific-to-a-platformHow to use TFormatSettings.Create wit...
分类:
其他好文 时间:
2015-02-06 14:49:48
阅读次数:
620
#include #include #include /** some good values for block size and count*/#define BLOCK_SIZE 8192#define BLOCK_COUNT 20/** function prototypes*/ stati...