Submission #3017883


Source Code Expand

/* ---------- STL Libraries ---------- */

// IO library
#include <cstdio>
#include <fstream>
#include <iomanip>
#include <ios>
#include <iostream>

// algorithm library
#include <algorithm>
#include <cmath>
#include <numeric>

// container library
#include <array>
#include <bitset>
#include <deque>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <vector>

/* ---------- Namespace ---------- */

using namespace std;

/* ---------- Type Abbreviation ---------- */

template <typename T>
using V = vector<T>;
template <typename T, typename U>
using P = pair<T, U>;
template <typename T>
using PQ = priority_queue<T>;
template <typename T>
using GPQ = priority_queue<T, vector<T>, greater<T>>;

using ll = long long;

#define fst first
#define snd second
#define pb push_back
#define mp make_pair
#define mt make_tuple

/* ---------- conversion ---------- */

#define INT(c) static_cast<int>(c)
#define CHAR(n) static_cast<char>(n)
#define LL(n) static_cast<ll>(n)
#define DOUBLE(n) static_cast<double>(n)

/* ---------- container ---------- */

#define ALL(v) (v).begin(), (v).end()
#define SIZE(v) (LL((v).size()))

#define FIND(v, k) (v).find(k) != (v).end()
#define VFIND(v, k) find(ALL(v), k) != (v).end()

#define gsort(b, e) sort(b, e, greater<decltype(*b)>())
#define SORT(v) sort(ALL(v))
#define GSORT(v) gsort(ALL(v))

/* ---------- repetition ---------- */

#define FOR(i, a, b) for (ll i = (a); i <= (b); ++i)
#define RFOR(i, a, b) for (ll i = (a); i >= (b); --i)

/* ----------- debug ---------- */

template <class T>
ostream& operator<<(ostream& os, vector<T> v) {
    os << "[";
    for (auto vv : v)
        os << vv << ",";
    return os << "]";
}

template <class T>
ostream& operator<<(ostream& os, set<T> v) {
    os << "[";
    for (auto vv : v)
        os << vv << ",";
    return os << "]";
}

template <class L, class R>
ostream& operator<<(ostream& os, pair<L, R> p) {
    return os << "(" << p.fst << "," << p.snd << ")";
}

/* ---------- Constants ---------- */

// const ll MOD = 1e9 + 7;
// const int INF = 1 << 25;
// const ll INF = 1LL << 50;
// const double PI = acos(-1);
// const double EPS = 1e-10;
// const ll dx[4] = {0, -1, 1, 0};
// const ll dy[4] = {-1, 0, 0, 1};

/* ---------- Short Functions ---------- */

template <typename T>
T sq(T a) {
    return a * a;
}

template <typename T>
T gcd(T a, T b) {
    if (a > b) return gcd(b, a);
    return a == 0 ? b : gcd(b % a, a);
}

template <typename T, typename U>
T mypow(T b, U n) {
    if (n == 0) return 1;
    if (n == 1) return n /* % MOD */;
    if (n % 2 == 0) {
        return mypow(sq(b) /* % MOD */, n / 2);
    } else {
        return mypow(b, n - 1) * b /* % MOD */;
    }
}

ll pcnt(ll b) {
    return __builtin_popcountll(b);
}

/* v-v-v-v-v-v-v-v-v Main Part v-v-v-v-v-v-v-v-v */

#define DEBUG
#define DEBUG_CASE_NUM 6

struct node {
    explicit node(ll _d) : d(_d) {
        child[0] = child[1] = -1;
    }

    ll d;
    ll child[2];
};

V<node> tree;
ll N, L;

ll grundy(ll n) {
    ll ret = 1;
    while (n % 2 == 0) {
        n /= 2;
        ret *= 2;
    }

    return ret;
}

ll dfs(ll v) {
    if (tree[v].child[0] < 0 && tree[v].child[1] < 0) {
        return 0;
    }

    ll ret = 0;

    FOR(i, 0, 1) {
        if (tree[v].child[i] < 0) {
            ret ^= grundy(L - tree[v].d);
        } else {
            ret ^= dfs(tree[v].child[i]);
        }
    }

    return ret;
}

void solve() {
    tree.clear();

    cin >> N >> L;

    tree.pb(node(0));

    FOR(_, 1, N) {
        string S;
        cin >> S;

        ll now = 0;
        for (char c : S) {
            if (tree[now].child[c - '0'] >= 0) {
                now = tree[now].child[c - '0'];
            } else {
                tree[now].child[c - '0'] = SIZE(tree);
                tree.pb(node(tree[now].d + 1));
                now = tree[now].child[c - '0'];
            }
        }
    }

    cout << (dfs(0) > 0 ? "Alice" : "Bob") << endl;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    // cout << fixed << setprecision(10);

#ifdef DEBUG
    freopen("input.txt", "r", stdin);
    FOR(_, 1, DEBUG_CASE_NUM) {
        solve();
        cout << "++++++++++" << endl;
    }
#else
    solve();
#endif

    return 0;
}

Submission Info

Submission Time
Task E - Prefix-free Game
User Tiramister
Language C++14 (GCC 5.4.1)
Score 0
Code Size 4469 Byte
Status RE
Exec Time 98 ms
Memory 256 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:210:37: warning: ignoring return value of ‘FILE* freopen(const char*, const char*, FILE*)’, declared with attribute warn_unused_result [-Wunused-result]
     freopen("input.txt", "r", stdin);
                                     ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 700
Status
RE × 6
RE × 60
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt, 0_05.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt, 0_05.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt, 1_18.txt, 1_19.txt, 1_20.txt, 1_21.txt, 1_22.txt, 1_23.txt, 1_24.txt, 1_25.txt, 1_26.txt, 1_27.txt, 1_28.txt, 1_29.txt, 1_30.txt, 1_31.txt, 1_32.txt, 1_33.txt, 1_34.txt, 1_35.txt, 1_36.txt, 1_37.txt, 1_38.txt, 1_39.txt, 1_40.txt, 1_41.txt, 1_42.txt, 1_43.txt, 1_44.txt, 1_45.txt, 1_46.txt, 1_47.txt, 1_48.txt, 1_49.txt, 1_50.txt, 1_51.txt, 1_52.txt, 1_53.txt
Case Name Status Exec Time Memory
0_00.txt RE 96 ms 256 KB
0_01.txt RE 96 ms 256 KB
0_02.txt RE 96 ms 256 KB
0_03.txt RE 96 ms 256 KB
0_04.txt RE 96 ms 256 KB
0_05.txt RE 96 ms 256 KB
1_00.txt RE 96 ms 256 KB
1_01.txt RE 96 ms 256 KB
1_02.txt RE 96 ms 256 KB
1_03.txt RE 96 ms 256 KB
1_04.txt RE 96 ms 256 KB
1_05.txt RE 96 ms 256 KB
1_06.txt RE 96 ms 256 KB
1_07.txt RE 95 ms 256 KB
1_08.txt RE 95 ms 256 KB
1_09.txt RE 98 ms 256 KB
1_10.txt RE 97 ms 256 KB
1_11.txt RE 96 ms 256 KB
1_12.txt RE 95 ms 256 KB
1_13.txt RE 97 ms 256 KB
1_14.txt RE 96 ms 256 KB
1_15.txt RE 97 ms 256 KB
1_16.txt RE 98 ms 256 KB
1_17.txt RE 96 ms 256 KB
1_18.txt RE 96 ms 256 KB
1_19.txt RE 96 ms 256 KB
1_20.txt RE 97 ms 256 KB
1_21.txt RE 96 ms 256 KB
1_22.txt RE 96 ms 256 KB
1_23.txt RE 95 ms 256 KB
1_24.txt RE 95 ms 256 KB
1_25.txt RE 96 ms 256 KB
1_26.txt RE 96 ms 256 KB
1_27.txt RE 96 ms 256 KB
1_28.txt RE 96 ms 256 KB
1_29.txt RE 96 ms 256 KB
1_30.txt RE 97 ms 256 KB
1_31.txt RE 97 ms 256 KB
1_32.txt RE 96 ms 256 KB
1_33.txt RE 96 ms 256 KB
1_34.txt RE 97 ms 256 KB
1_35.txt RE 98 ms 256 KB
1_36.txt RE 98 ms 256 KB
1_37.txt RE 98 ms 256 KB
1_38.txt RE 96 ms 256 KB
1_39.txt RE 96 ms 256 KB
1_40.txt RE 98 ms 256 KB
1_41.txt RE 96 ms 256 KB
1_42.txt RE 95 ms 256 KB
1_43.txt RE 96 ms 256 KB
1_44.txt RE 96 ms 256 KB
1_45.txt RE 95 ms 256 KB
1_46.txt RE 96 ms 256 KB
1_47.txt RE 96 ms 256 KB
1_48.txt RE 96 ms 256 KB
1_49.txt RE 98 ms 256 KB
1_50.txt RE 96 ms 256 KB
1_51.txt RE 96 ms 256 KB
1_52.txt RE 96 ms 256 KB
1_53.txt RE 96 ms 256 KB