2015年1月14日

大数加减法实现

摘要: 传送门 1 /* 2 * input: an expression seperated by a '-' or '+'; for example: a-b, a+b 3 * ouput: the answer of the input expression 4 */ 5 #includ... 阅读全文

posted @ 2015-01-14 15:16 Stomach_ache 阅读(192) 评论(0) 推荐(0) 编辑

位操作(求[a, b] 中二进制位为1的个数最多的数)

摘要: 传送门题意:求区间[a, b]中二进制位为1的个数最多的那个数,如果存在多解,则输出最小的那个。(0 2 3 typedef long long ll; 4 5 int main(void) { 6 int n; 7 scanf("%d", &n); 8 while (... 阅读全文

posted @ 2015-01-14 15:14 Stomach_ache 阅读(238) 评论(0) 推荐(0) 编辑

导航