Submission #3887446


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

#define pb push_back
#define mp make_pair
#define mt make_tuple
#define fi first
#define se second
#define all(a) (a).begin(),(a).end()
#define endl "\n"
#define show(x) cerr << #x << " " << x << endl

typedef long long ll;
typedef unsigned long long ull;

constexpr const int INT_INF=0x3f3f3f3f; // 1061109567
constexpr const ll LL_INF=0x3f3f3f3f3f3f3f3f; // 4557430888798830399

template <typename T> bool chmin(T &a, T b) {
    if (a > b) {a = b;return true;}return false;
}

template <typename T> bool chmax(T &a, T b) {
    if (a < b) {a = b;return true;}return false;
}

// INT
#define GCD(a, b) __gcd(a, b)
template <typename T> T LCM(T a, T b) {return a / GCD(a, b) * b;}
template <typename T> T EXTGCD(T a, T b, T& x, T& y) {
    T d = a;
    if (b != 0) {d=EXTGCD(b,a%b,y,x);y-=(a/b)*x;}
    else x=1,y=0;
    return d;
}
template <typename T> bool is_prime(T a) {
    for(int i=2;i*i<=a;i++)if(a%i==0)return 1;
    return 0;
}

// MOD
const ll MOD = 1000000000 + 7;
#define add(a, b) ((a % MOD) + (b % MOD)) % MOD
#define mul(a, b) ((a % MOD) * (b % MOD)) % MOD
#define sub(a, b) ((a % MOD) + MOD - (b % MOD)) % MOD
template <typename T> T mod_inverse(T a, T mod, bool prime){ // if mod is prime, "prime" is true.
    if(prime){
        T tmp=mod-2,now=a,res=1;while(tmp){if(tmp&1)res=mul(res,now);now=mul(now,now);tmp>>=1;}
        return res;
    }else{T x,y;EXTGCD(a,mod,x,y);return (mod+x%mod)%mod;}
}
#define divide(a, b) ((a % MOD) * (mod_inverse(b, MOD, true))) % MOD

//LLの数値をつかう時は最後にLをつける癖をつけよう
//
//    ┓   ┏
//   *┗┓ ┏┛
//     ┫ ┣ *
//   ┏┳┻━┻┳┓
//   ┗┫   ┣┛
//  * ┣  ━┃ *        Merry Christmas!!
//   ┏┛  〃┃
//   ┃●   ┣━┳┓
//   ┗┻┳━━┛ ┣┛
//   * ┃┏┓┣┓┃
//WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW

int n;
ll a[100001];
int in[50];
int num[50];

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.precision(10);
    cout << fixed;
#ifdef LOCAL_DEFINE
    FILE *stream1;
    //FILE *stream2;
    stream1 = freopen("/Users/aim_cpo/CLionProjects/competitive/in.txt", "r", stdin);
    //stream2 = freopen("out.txt", "w", stdout);
    if (stream1 == nullptr) return 0;
    //if (stream2 == NULL) return 0;
#endif
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    for (int i = 0; i < n; i++) {
        ll now = a[i];
        int cont = 0;
        while (now) {
            if (now & 1) {
                in[cont]++;
                break;
            }
            cont++;
            now >>= 1;
        }
    }
    for (int i = 0; i < n; i++) {
        ll now = a[i];
        int cont = 0;
        while (now) {
            if (now & 1) {
                num[cont]++;
            }
            cont++;
            now >>= 1;
        }
    }
    int res = 0;
    for (int i = 49; i >= 0; i--) {
        if (num[i] & 1) {
            if (in[i]) {
                res++;
                in[i]--;
                num[i]--;
                for (int j = i - 1; j >= 0; j--) {
                    num[j]++;
                }
            } else {
                cout << -1 << endl;
                return 0;
            }
        }
    }
    cout << res << endl;
#ifdef  LOCAL_DEFINE
    cerr << "Time elapsed: " << 1.0 * clock() / CLOCKS_PER_SEC << "s.\n";
#endif
    return 0;
}

Submission Info

Submission Time
Task C - Cheating Nim
User aim_cpo
Language C++14 (GCC 5.4.1)
Score 500
Code Size 3656 Byte
Status AC
Exec Time 22 ms
Memory 1024 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 500 / 500
Status
AC × 2
AC × 26
Set Name Test Cases
Sample example0.txt, example1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt AC 1 ms 256 KB
001.txt AC 1 ms 256 KB
002.txt AC 16 ms 1024 KB
003.txt AC 8 ms 768 KB
004.txt AC 9 ms 640 KB
005.txt AC 8 ms 512 KB
006.txt AC 21 ms 1024 KB
007.txt AC 21 ms 1024 KB
008.txt AC 21 ms 1024 KB
009.txt AC 21 ms 1024 KB
010.txt AC 21 ms 1024 KB
011.txt AC 21 ms 1024 KB
012.txt AC 21 ms 1024 KB
013.txt AC 22 ms 1024 KB
014.txt AC 21 ms 1024 KB
015.txt AC 21 ms 1024 KB
016.txt AC 21 ms 1024 KB
017.txt AC 21 ms 1024 KB
018.txt AC 21 ms 1024 KB
019.txt AC 21 ms 1024 KB
020.txt AC 21 ms 1024 KB
021.txt AC 3 ms 384 KB
022.txt AC 3 ms 384 KB
023.txt AC 19 ms 1024 KB
example0.txt AC 1 ms 256 KB
example1.txt AC 1 ms 256 KB