Editorial for Bedao Mini Contest 04 - CHANGE


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

Code mẫu

#include <bits/stdc++.h>

using namespace std;
const string filename = "CHANGE";

long long a, b;

int main(int argc, char** argv)
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    freopen( (filename + ".inp").c_str(), "r", stdin);
    freopen( (filename + ".out").c_str(), "w", stdout);

    cin >> a >> b;
    int cnt = __builtin_popcountll(a ^ b);
    cout << ((cnt % 2) ? -1 : cnt / 2);
}

Comments

Please read the guidelines before commenting.


There are no comments at the moment.