結果

問題 No.946 箱箱箱
ユーザー hitonanodehitonanode
提出日時 2019-12-09 00:15:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 1,644 ms
コンパイル使用メモリ 176,044 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 02:56:55
合計ジャッジ時間 11,921 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 227 ms
5,376 KB
testcase_04 AC 239 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 238 ms
5,376 KB
testcase_07 AC 212 ms
5,376 KB
testcase_08 AC 210 ms
5,376 KB
testcase_09 AC 191 ms
5,376 KB
testcase_10 AC 227 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 190 ms
5,376 KB
testcase_13 AC 207 ms
5,376 KB
testcase_14 AC 214 ms
5,376 KB
testcase_15 AC 222 ms
5,376 KB
testcase_16 AC 227 ms
5,376 KB
testcase_17 AC 223 ms
5,376 KB
testcase_18 AC 226 ms
5,376 KB
testcase_19 AC 199 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 188 ms
5,376 KB
testcase_22 AC 215 ms
5,376 KB
testcase_23 AC 223 ms
5,376 KB
testcase_24 AC 185 ms
5,376 KB
testcase_25 AC 189 ms
5,376 KB
testcase_26 AC 226 ms
5,376 KB
testcase_27 AC 221 ms
5,376 KB
testcase_28 AC 225 ms
5,376 KB
testcase_29 AC 206 ms
5,376 KB
testcase_30 AC 226 ms
5,376 KB
testcase_31 AC 225 ms
5,376 KB
testcase_32 AC 217 ms
5,376 KB
testcase_33 AC 214 ms
5,376 KB
testcase_34 AC 208 ms
5,376 KB
testcase_35 AC 222 ms
5,376 KB
testcase_36 AC 234 ms
5,376 KB
testcase_37 AC 236 ms
5,376 KB
testcase_38 AC 191 ms
5,376 KB
testcase_39 AC 221 ms
5,376 KB
testcase_40 AC 192 ms
5,376 KB
testcase_41 AC 222 ms
5,376 KB
testcase_42 AC 216 ms
5,376 KB
testcase_43 AC 236 ms
5,376 KB
testcase_44 AC 191 ms
5,376 KB
testcase_45 AC 234 ms
5,376 KB
testcase_46 AC 238 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define REP(i, n) FOR(i,0,n)
template<typename T> istream &operator>>(istream &is, vector<T> &vec){ for (auto &v : vec) is >> v; return is; }

int main()
{
    int N;
    cin >> N;
    vector<int> A(N);
    cin >> A;
    reverse(A.begin(), A.end());

    vector<int> AA(N + 1);
    REP(i, N) AA[i + 1] = AA[i] ^ A[i];

    vector<int> grundy(N + 1);
    REP(i, N) {
        unordered_set<int> trans;
        REP(j, i + 1) trans.insert(grundy[j] ^ (AA[i + 1] ^ AA[j]));
        int g = 0;
        while (trans.count(g)) g++;
        grundy[i + 1] = g;
    }
    cout << (grundy[N] ? "Takahashi" : "Takanashi") << endl;
}
0