
二进制
__铭
这个作者很懒,什么都没留下…
展开
-
HDU 5344 多校赛1002 MZL's xor
Problem Description MZL loves xor very much.Now he gets an array A.The length of A is n.He wants to know the xor of all (Ai+Aj)(1≤i,j≤n) The xor of an array B is defined as B1 xor B2...xor Bn In原创 2015-08-04 16:11:10 · 418 阅读 · 0 评论 -
二进制枚举
#include #define LL long long using namespace std; int main() { LL n,m; cin>>n>>m; int num = 0; for(int i=1;i<=64;i++) { for(int j=0;j<i-1;j++) { LL t原创 2016-01-05 17:28:02 · 1058 阅读 · 0 评论