好久没有写android的小例子了,由于前几天写了一篇关于Intent.Action的文章,有朋友私信问我关于ACTION_SCREEN_ON和ACTION_SCREEN_OFF还有ACTION_USER_PRESENT三个Action的用法,由于作为一个总结博文,当时并没有详细讲,ACTION_SCREEN_ON和ACTION_SCREEN_OFF只能通过动态注册的方式(代码内context.r...
分类:
其他好文 时间:
2014-08-26 11:37:55
阅读次数:
290
The present invention relates to the field of security of electronic data and/or communications. In one form, the invention relates to data security a...
分类:
其他好文 时间:
2014-08-25 19:07:25
阅读次数:
248
给你n棵花的高度,m天,每天可以浇连续的w朵花,每天一次,一次花增长1个单位高度
求m天后,最矮的花最高是多少
最大最小问题可以用二分来解
首先我们可以得到所有花的最矮高度即答案的下界,给这个花浇m天即是答案的上界
然后二分枚举答案,检验合法性。
如何检验合法性
我们用个数组来记录need[i]表示
i点需要浇的次数(从i点开始的区间)
我们再用一个变量...
分类:
其他好文 时间:
2014-08-23 03:33:40
阅读次数:
228
代码有详细解释,二分模拟寻找结果,贪心选择从哪开始浇花,原则就是遇到需要浇花的就浇,至于w可以用线段树来维护线段,但也可以用一个数组标记一下,二分总是有很多问题啊,所以写很多输出用来调试,jiong
/*************************************************************************
> File Name: 460c.cpp...
分类:
其他好文 时间:
2014-08-23 01:08:29
阅读次数:
233
All the things present from the universe is frequently modifying each of the time regardless of irrespective of whether it has occurred in past times ...
分类:
其他好文 时间:
2014-08-22 12:36:36
阅读次数:
219
Codeforces Round #262 (Div. 2) 460C. Present(二分)...
分类:
其他好文 时间:
2014-08-22 10:55:46
阅读次数:
168
output
standard output
Little beaver is a beginner programmer, so informatics is his favorite subject. Soon his informatics teacher is going to have a birthday and the beaver has decided to prepar...
分类:
其他好文 时间:
2014-08-21 19:31:34
阅读次数:
259
Codeforces Round #262 (Div. 2) C. Present...
分类:
其他好文 时间:
2014-08-21 11:36:04
阅读次数:
162
题意:找出现次数不同于其他数的数。
超时了一次,后来知道了位运算。。。长见识了
0^0 =0
0^1=1
1^0=1
1^1=0
0^1^1 = 0
可以发现 任何数异或0还是他本身。
一个数异或另一个数偶数次还是他本身。
代码(位运算都600+ms):
#include
#include
int main()
{
int a, b...
分类:
其他好文 时间:
2014-08-21 11:34:14
阅读次数:
173