結果

問題 No.946 箱箱箱
ユーザー zicazica
提出日時 2024-08-31 01:17:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 2,202 bytes
コンパイル時間 3,688 ms
コンパイル使用メモリ 276,700 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-08-31 01:18:02
合計ジャッジ時間 9,330 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 97 ms
11,520 KB
testcase_04 AC 105 ms
11,392 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 105 ms
11,520 KB
testcase_07 AC 103 ms
11,520 KB
testcase_08 AC 105 ms
11,520 KB
testcase_09 AC 45 ms
11,520 KB
testcase_10 AC 98 ms
11,520 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 28 ms
11,520 KB
testcase_13 AC 106 ms
11,520 KB
testcase_14 AC 106 ms
11,392 KB
testcase_15 AC 101 ms
11,392 KB
testcase_16 AC 94 ms
11,392 KB
testcase_17 AC 97 ms
11,520 KB
testcase_18 AC 103 ms
11,648 KB
testcase_19 AC 81 ms
11,392 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 56 ms
11,392 KB
testcase_22 AC 101 ms
11,520 KB
testcase_23 AC 103 ms
11,392 KB
testcase_24 AC 57 ms
11,520 KB
testcase_25 AC 78 ms
11,392 KB
testcase_26 AC 96 ms
11,392 KB
testcase_27 AC 98 ms
11,392 KB
testcase_28 AC 95 ms
11,520 KB
testcase_29 AC 104 ms
11,392 KB
testcase_30 AC 102 ms
11,520 KB
testcase_31 AC 103 ms
11,520 KB
testcase_32 AC 97 ms
11,264 KB
testcase_33 AC 103 ms
11,392 KB
testcase_34 AC 104 ms
11,520 KB
testcase_35 AC 103 ms
11,392 KB
testcase_36 AC 105 ms
11,392 KB
testcase_37 AC 104 ms
11,392 KB
testcase_38 AC 78 ms
11,392 KB
testcase_39 AC 98 ms
11,520 KB
testcase_40 AC 67 ms
11,392 KB
testcase_41 AC 99 ms
11,392 KB
testcase_42 AC 101 ms
11,392 KB
testcase_43 AC 105 ms
11,392 KB
testcase_44 AC 78 ms
11,392 KB
testcase_45 AC 105 ms
11,520 KB
testcase_46 AC 105 ms
11,392 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 3 ms
6,940 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 2 ms
6,940 KB
testcase_53 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef ONLINE_JUDGE
#define NDEBUG
#endif
#if defined(__GNUC__) && !defined(__clang__)
// #pragma GCC optimize("O3")
// #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#pragma GCC optimize("unroll-loops")
#endif
// workaround for codeforces g++20 compiler bug
#if __cplusplus >= 202002L
#define _EXT_CODECVT_SPECIALIZATIONS_H
#define _EXT_ENC_FILEBUF_H
#endif
//
#include <bits/stdc++.h>
using namespace std;
#if __cplusplus >= 202002L
namespace R = ranges;
namespace V = views;
#endif
using i64 = long long;
using u64 = unsigned long long;
using f64 = double;
using uz = size_t;
using u32 = uint32_t;
using itn = int;

template <typename T> using ve = vector<T>;
template <typename T> using a2 = array<T, 2>;
template <typename K, typename V> using HashMap = unordered_map<K, V>;
template <typename T> using HashSet = unordered_set<T>;
template <typename T, typename C = less<T>>
using PQ = std::priority_queue<T, vector<T>, C>;
template <typename T, typename C = greater<T>>
using miPQ = std::priority_queue<T, vector<T>, C>;

#define mt make_tuple
#define mp make_pair

#ifdef LOCAL
#include "debug_template.cpp"
#else
#define debug(...)
#define debugArr(...)
#endif

// constexpr array<int, 5> dirs{-1, 0, 1, 0, -1};
// constexpr char nesw[4]{'N', 'E', 'S', 'W'};
// constexpr int M = 1e9 + 7;
void cln() { cout << '\n'; }
constexpr char ln = '\n';

ve<int> pxor;
array<int, 2002> dp;
int g(int i);
int g_impl(int i) {
  ve<int> s;
  s.reserve(pxor.size() - i);
  const int prev = i ? pxor[i - 1] : 0;
  for (int j = i; j < pxor.size(); ++j) {
    s.push_back(pxor[j] ^ g(j + 1) ^ prev);
  }
  R::sort(s);
  int c = 0;
  for (int i = 0; i < s.size(); ++i) {
    if (s[i] > c) {
      return c;
    }
    if (s[i] == c) {
      ++c;
    }
  }
  return c;
}

int g(int i) {
  if (i == pxor.size()) {
    return 0;
  }
  auto &memo = dp[i];
  if (memo != -1) {
    return memo;
  }
  return memo = g_impl(i);
}

int main() {
#ifndef LOCAL
  ios::sync_with_stdio(0), cin.tie(0);
#endif
  //
  dp.fill(-1);
  int n;
  cin >> n;
  pxor.resize(n);
  cin >> pxor[0];
  for (int i = 1; i < n; ++i) {
    cin >> pxor[i];
    pxor[i] ^= pxor[i - 1];
  }
  cout << (g(0) ? "Takahashi" : "Takanashi") << ln;
}
0