码迷,mamicode.com
首页 > 其他好文 > 详细

Good Bye 2019 C. Make Good

时间:2020-01-08 00:47:08      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:main   mamicode   异或   div   png   style   return   std   size   

https://codeforces.com/contest/1270/problem/C

思路:利用异或的性质 a^a=0 先加一项把之前的异或和的影响消去 再加一项使得满足s=2x

s+x+y=2y y=s+x

官方:

技术图片

 

 

#include<bits/stdc++.h>
#define ll long long
using namespace std;

int main(){
    int T;
    ios::sync_with_stdio(false);cin.tie(0);
    cin>>T;
    while(T--){
        int n,x=0;
        ll s=0;
        cin>>n;
        for(int i=0;i<n;i++){
            int a;
            cin>>a;
            s+=a;
            x^=a;
        }
    cout<<2<<endl;
    cout<<x<< <<s+x<<endl;    
    }
    return 0;
}

Good Bye 2019 C. Make Good

标签:main   mamicode   异或   div   png   style   return   std   size   

原文地址:https://www.cnblogs.com/wyh447154317/p/12164421.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!