会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
PosProteus
Fighting
首页
新随笔
联系
管理
2016年5月28日
中国剩余定理
摘要: 51nod1079
阅读全文
posted @ 2016-05-28 15:44 PosProteus
阅读(241)
评论(0)
推荐(0)
编辑
树状数组
摘要: 1 int lowbit(int x) 2 { 3 return x & (-x); 4 } 5 6 int sum(int x) 7 { 8 int ret = 0; 9 while(x > 0) 10 { 11 ret += tmp[x]; x -= lowbit(x); 12 } 13 return ret...
阅读全文
posted @ 2016-05-28 14:38 PosProteus
阅读(135)
评论(0)
推荐(0)
编辑
公告