結果
問題 | No.946 箱箱箱 |
ユーザー |
|
提出日時 | 2024-08-31 02:03:15 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 1,953 bytes |
コンパイル時間 | 3,874 ms |
コンパイル使用メモリ | 266,808 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-31 02:03:21 |
合計ジャッジ時間 | 5,680 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 51 |
ソースコード
#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 >= 202002Lnamespace R = ranges;namespace V = views;#endifusing 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';array<int, 2002> dp;bitset<2001> in;int main() {#ifndef LOCALios::sync_with_stdio(0), cin.tie(0);#endif//int n;cin >> n;ve<int> pxor(n);cin >> pxor[0];for (int i = 1; i < n; ++i) {cin >> pxor[i];pxor[i] ^= pxor[i - 1];}dp[n] = 0;for (int i = n - 1; i >= 0; --i) {const int prev = i ? pxor[i - 1] : 0;in.set();for (int j = i; j < n; ++j) {int cur = pxor[j] ^ dp[j + 1] ^ prev;if (cur < in.size()) {in.reset(cur);}}dp[i] = in._Find_first();}cout << (dp[0] ? "Takahashi" : "Takanashi") << ln;}