摘要: [http://ybt.ssoier.cn:8088/problem_show.php?pid=1211]() #include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <map> # 阅读全文
posted @ 2022-02-22 19:56 lwx_R 阅读(39) 评论(0) 推荐(0) 编辑
摘要: [http://ybt.ssoier.cn:8088/problem_show.php?pid=1199]() 一本通 1199 #include <iostream> #include <cstring> #include <cstdio> #define maxn 10000005 typede 阅读全文
posted @ 2022-02-22 19:54 lwx_R 阅读(18) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <map> #include <queue> #include <set> #include <iterator> #incl 阅读全文
posted @ 2022-02-22 19:49 lwx_R 阅读(45) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <map> #include <queue> #include <set> #include <iterator> #incl 阅读全文
posted @ 2022-02-22 19:42 lwx_R 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 左移运算 左移运算符“<<”是双目运算符。左移n位就是乘以2的n次方。 其功能把“<<”左边的运算数的各二进位全部左移若干位,由“<<”右边的数指定移动的位数,高位丢弃,低位补0。(x<<n == x*2^n) 右移运算 右移运算符“>>”是双目运算符。右移n位就是除以2的n次方。其功能是把“>>” 阅读全文
posted @ 2022-02-22 19:00 lwx_R 阅读(133) 评论(0) 推荐(0) 编辑