码迷,mamicode.com
首页 >  
搜索关键字:__int64    ( 879个结果
计算1的个数
__int64 CountOne(__int64 n) { __int64 count =0; if (n ==0) count =0; else if (n >1&& n <10) count =1; else { __int64 highest = n; __int64 bit =0; ...
分类:其他好文   时间:2014-07-19 23:27:20    阅读次数:307
Fence Repair
有n(n>=1&&n1&&node[i]>n) { node[0]=0; for(i=1;i>node[i]; inheap(node[i]); } __int64 ans=0; for(i=1;i...
分类:其他好文   时间:2014-07-19 23:02:20    阅读次数:190
hdu 4811 Ball
分类讨论,看分成两堆两边的个数。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 __int64 a[3][3][3]; 8 __int64 f[4],n,k,tep; 9 10 int main...
分类:其他好文   时间:2014-07-16 21:30:59    阅读次数:171
android binder 机制三(匿名Service)
什么是匿名Service?凡是没有到ServiceManager上注册的Service,都是匿名Service。 还是拿上一篇的例子来举例,看代码: status_t MediaPlayer::setDataSource(int fd, int64_t offset, int64_t length) { status_t err = UNKNOWN_ERROR; const s...
分类:移动开发   时间:2014-07-16 17:17:32    阅读次数:379
C++Builder 中使用 __int64 整数的问题
程序中用到一个大整数。存储在 MySQL 数据库那边用了 bigint 类型,程序运算过程中就有了点麻烦。integer用不了,只能用 __int64 这个数据类型。麻烦一,从数据表取数据。以前在数据表取回整形数据时用的都是Query->FieldByName("data")->AsInteger这...
分类:编程语言   时间:2014-07-16 15:35:52    阅读次数:230
GCD 延时方法 (Swift)
func delay(delay:Double, closure:()->()) { dispatch_after( dispatch_time( DISPATCH_TIME_NOW, Int64(delay * Double(NSEC...
分类:其他好文   时间:2014-07-13 22:03:07    阅读次数:281
poj 1426 Find The Multiple
题意为求出只由0,1组成的并且是所给数倍数的数, 广搜。。 因为首位不能为0,因此必为1;所以搜索的下一层为上一层的10倍和10倍加1; #include #include #include using namespace std; __int64 s[9999999]; __int64 r; void show(int q) { int i,j; s[0]=1; j=0; i=0;...
分类:其他好文   时间:2014-07-13 16:36:40    阅读次数:172
poj 3466 A Simple Problem with Integers
题目链接:http://poj.org/problem?id=3468 http://poj.org/problem?id=3468 http://poj.org/problem?id=3468 思路:这是一个区间修改区间查询的题,由于题目中的给的数据比较大,那么用单个修改和查询肯定不行,所以。。。。注意数据可能比较大,应该用__int64或long long存数据。。。。。 code: #...
分类:其他好文   时间:2014-07-12 22:30:01    阅读次数:168
POJ3468
这个点POJ挂了,代码没法提交,先存到这里,明天再提交试试看。 //#define DEBUG #include #define maxn 100002 #define lson l, mid, rt << 1 #define rson mid + 1, r, rt << 1 | 1 __int64 tree[maxn << 2], arr[maxn], lazy[maxn << 2];...
分类:其他好文   时间:2014-07-09 09:41:55    阅读次数:213
Codeforces 444C(线段树)
区间颜色不一致就更新到底,否则lazy标记 #include #include #include #include using namespace std; #define lc l,m,index<<1 #define rc m+1,r,index<<1|1 #define N 100005 #define ll __int64 struct node { bool same; ll c...
分类:其他好文   时间:2014-07-08 18:00:56    阅读次数:226
879条   上一页 1 ... 79 80 81 82 83 ... 88 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!