转自:http://hubingforever.blog.163.com/blog/static/1710405792012587115533/本文编辑整理自:http://sg552.iteye.com/blog/1300713 http://web.mit.edu/bitbucket/git-d...
分类:
其他好文 时间:
2015-08-06 10:49:30
阅读次数:
206
Pick-up
sticks
Time Limit: 3000MS
Memory Limit: 65536K
Total Submissions: 10949
Accepted: 4085
Description
Stan has n sticks of various length. He throws them one...
分类:
其他好文 时间:
2015-08-05 20:29:23
阅读次数:
139
#include #include #include #include #include #include #define PICK_SIZE 32int winWidth = 400, winHeight = 300;void Initial(void){ glClearColo...
分类:
其他好文 时间:
2015-08-05 14:34:19
阅读次数:
109
题意:
给出一个顶点在格点上的多边形,顶点逆时针给出;
求1.多边形内部格点数,2.多边形边上格点数,3.多边形面积;
题解:
本题问题顺序与难度无关!
看完了pick定理之后,我猜测是用前两个格点数求出图形面积!
然后我特么就傻x了!
真相其实还是用叉积来求面积。。。
然后记录边上的格点数,也就是边这个向量的gcd(x,y)
注意x,y应该取绝对值,否则求出来一个负数岂...
分类:
其他好文 时间:
2015-07-31 20:23:13
阅读次数:
102
Description
Alice and Bob decide to play a funny game. At the beginning of the game they pick n(1 <= n <= 10
6) coins in a circle, as Figure 1 shows. A move consists in removing one or two adjacen...
分类:
其他好文 时间:
2015-07-31 18:33:26
阅读次数:
118
从相册中选择图片上传function uploadFromAlbum(type) { var dirtype = ""; if ("pick_store_license" == type || "pick_id_pic" == type) { dirtype = "auth...
分类:
Web程序 时间:
2015-07-27 20:49:02
阅读次数:
136
Area
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 5284
Accepted: 2375
Description
Being well known for its highly innovative products, Merck would defin...
分类:
其他好文 时间:
2015-07-25 18:34:02
阅读次数:
190
DescriptionAlice and Bob decide to play a new stone game.At the beginning of the game they pick n(1#include#includeusing namespace std;int n,a[11];int...
分类:
其他好文 时间:
2015-07-15 22:10:37
阅读次数:
131
最近做一个页面,反馈问题页面,有个用户上传问题图片的功能。本来很笨的想把系统的所有图片列出来,然后让用户选择,后来发现原来可以直接打开手机所有图片的api的。效果如图:
给出主要代码:
1、选择图片
Intent i = new Intent(Intent.ACTION_PICK, android.pro...
分类:
移动开发 时间:
2015-07-14 22:41:35
阅读次数:
143
在郭神的第一行代码中,第8章的从相册中选择图片这块,从相册选一张裁剪后显示到屏幕。但是运行后会发现从相册选了图片后,没有弹出裁剪的界面,直接返回。查找原因时,发现SD卡路径下的output_image.jpg是一个0字节文件。所以
这张图片没有生成。然后我觉得是向系统发送选择照片的意图出了问题。我好奇的查看了下系统的图库应用(gallery)源码的清单文件意图过滤器这块,果然有发现:<intent...
分类:
移动开发 时间:
2015-07-13 20:46:37
阅读次数:
260