結果

問題 No.2278 Time Bomb Game 2
ユーザー abc23abc23
提出日時 2023-04-22 14:58:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 6,233 bytes
コンパイル時間 3,726 ms
コンパイル使用メモリ 282,716 KB
実行使用メモリ 185,216 KB
最終ジャッジ日時 2024-04-24 18:46:06
合計ジャッジ時間 14,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 36 ms
50,176 KB
testcase_07 AC 100 ms
133,120 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 140 ms
185,088 KB
testcase_11 AC 143 ms
185,088 KB
testcase_12 AC 140 ms
185,088 KB
testcase_13 AC 142 ms
185,088 KB
testcase_14 WA -
testcase_15 AC 141 ms
185,088 KB
testcase_16 AC 139 ms
184,960 KB
testcase_17 AC 146 ms
184,960 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 143 ms
185,088 KB
testcase_21 WA -
testcase_22 AC 139 ms
185,088 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 141 ms
185,088 KB
testcase_27 AC 138 ms
184,960 KB
testcase_28 AC 139 ms
185,088 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 142 ms
185,088 KB
testcase_34 AC 141 ms
184,960 KB
testcase_35 AC 141 ms
185,088 KB
testcase_36 WA -
testcase_37 AC 144 ms
185,088 KB
testcase_38 WA -
testcase_39 AC 144 ms
185,216 KB
testcase_40 AC 143 ms
185,088 KB
testcase_41 WA -
testcase_42 AC 142 ms
185,088 KB
testcase_43 WA -
testcase_44 AC 143 ms
184,960 KB
testcase_45 WA -
testcase_46 AC 142 ms
184,960 KB
testcase_47 AC 143 ms
185,088 KB
testcase_48 AC 145 ms
185,088 KB
testcase_49 WA -
testcase_50 AC 143 ms
185,088 KB
testcase_51 AC 144 ms
184,960 KB
testcase_52 WA -
testcase_53 AC 142 ms
185,088 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 141 ms
185,088 KB
testcase_64 WA -
testcase_65 AC 141 ms
185,088 KB
testcase_66 AC 142 ms
184,960 KB
testcase_67 WA -
testcase_68 AC 148 ms
185,088 KB
testcase_69 AC 147 ms
184,960 KB
testcase_70 WA -
testcase_71 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#if !__INCLUDE_LEVEL__

#include __FILE__

int n,k,turn;
string s;
V<V<int>> dp;
int dx[]={1,-1};

bool dfs(int now,int t){
	if(dp[t][now]!=-1)return dp[t][now];
	if(t==0){
		if(s[now]=='A'){
			return (dp[t][now]=0);
		}
		else{
			return (dp[t][now]=1);
		}
	}
	if(s[now]=='B'){
		bool res=1;
		rep(i,2){
			if(now+dx[i]<0||n<=now+dx[i])continue;
			if(dfs(now+dx[i],t-1)==0)res=0;
		}
		return (dp[t][now]=res);
	}
	if(s[now]=='A'){
		bool res=0;
		rep(i,2){
			if(now+dx[i]<0||n<=now+dx[i])continue;
			if(dfs(now+dx[i],t-1)==1)res=1;
		}
		return (dp[t][now]=res);
	}
	return 0;
}

void f(){
  random_device rd;
  mt19937 mt(rd());
	n=20;
	turn=30;
	k=mt()%n+1;
	rep(i,n){
		s+=char(mt()%2+'A');
	}
	cout<<n<<" "<<k<<" "<<turn<<endl;
	cout<<s<<endl;
	return ;
}

void ab(bool x){
	if(x)cout<<"Alice"<<endl;
	else cout<<"Bob"<<endl;
	return ;
}

struct Solver {
void solve() {
	cin>>n>>k>>turn;
	cin>>s;
	// f();
	k--;
	dp=V<V<int>>(115,V<int>(n,-1));
	if(turn<=100){
		ab(dfs(k,turn));
		return ;
	}
	if(k%2==0){
		ab(dfs(k,100));
	}
	else{
		ab(dfs(k,101));
	}

}};

signed main() {
	int ts = 1;
	// scanf("%lld",&ts);
	rep(ti,ts) {
		Solver solver;
		solver.solve();
	}
	return 0;
}

#else

#include <bits/stdc++.h>
// #include <atcoder/all>
// using namespace atcoder;
// #include <ext/pb_ds/assoc_container.hpp>
// #include <ext/pb_ds/tree_policy.hpp>
// using namespace __gnu_pbds;

using namespace std;

#define int ll

using ll=long long;
using ld = long double;
using uint = unsigned;
using ull = unsigned long long;
using P=pair<int,int>;
using TP=tuple<int,int,int>;

const int INF = 1001001001;
const long long INFL = 3e18;
const int MAX = 2e6+5;

#define FOR1(a) for (ll _ = 0; _ < ll(a); ++_)
#define FOR2(i, a) for (ll i = 0; i < ll(a); ++i)
#define FOR3(i, a, b) for (ll i = a; i < ll(b); ++i)
#define FOR4(i, a, b, c) for (ll i = a; i < ll(b); i += (c))
#define FOR1_R(a) for (ll i = (a)-1; i >= ll(0); --i)
#define FOR2_R(i, a) for (ll i = (a)-1; i >= ll(0); --i)
#define FOR3_R(i, a, b) for (ll i = (b)-1; i >= ll(a); --i)
#define FOR4_R(i, a, b, c) for (ll i = (b)-1; i >= ll(a); i -= (c))
#define overload4(a, b, c, d, e, ...) e
#define rep(...) overload4(__VA_ARGS__, FOR4, FOR3, FOR2, FOR1)(__VA_ARGS__)
#define rrep(...) overload4(__VA_ARGS__, FOR4_R, FOR3_R, FOR2_R, FOR1_R)(__VA_ARGS__)
#define fore(i,a) for(auto &i:a)

#define all(x) x.begin(),x.end() 
#define allr(x) x.rbegin(),x.rend() 
#define sz(x) ((int)(x).size())
#define bp(x) (__builtin_popcountll((long long)(x)))
#define elif else if
#define mpa make_pair
#define bit(n) (1LL<<(n))
#define LB(c, x) distance((c).begin(), lower_bound(all(c), (x)))
#define UB(c, x) distance((c).begin(), upper_bound(all(c), (x)))

template<typename T> using V = vector<T>;
template<typename T> using max_heap = priority_queue<T>;
template<typename T> using min_heap = priority_queue<T, vector<T>, greater<>>;
template<typename T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<typename T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
template<typename T>string join(const T&v,const string& d=""){stringstream s;rep(i,sz(v))(i?s<<d:s)<<v[i];return s.str();}
template<typename T>ostream& operator<<(ostream&o,const vector<T>&v){if(sz(v))o<<join(v," ");return o;}
template<typename T1,typename T2>ostream& operator<<(ostream&o,const pair<T1,T2>&v){return o<<v.first<<","<<v.second;}
template<typename Tx, typename Ty>Tx dup(Tx x, Ty y){return (x+y-1)/y;}
template<typename T>ll suma(const vector<T>&a){ll res(0);for(auto&&x:a)res+=x;return res;}
template<typename T>ll suma(const V<V<T>>&a){ll res(0);for(auto&&x:a)res+=suma(x);return res;}
template<typename T>void uni(T& a){sort(all(a));a.erase(unique(all(a)),a.end());}
template<typename T>void prepend(vector<T>&a,const T&x){a.insert(a.begin(),x);}
template<typename T>T vgcd(T m, T n) {return std::gcd(m, n);}
template<typename T, typename... Args>T vgcd(T a, Args... args) {return vgcd(a, vgcd(args...));}

void print(){ putchar(' '); }
void print(bool a){ printf("%d", a); }
// void print(int a){ printf("%d", a); }
void print(unsigned a){ printf("%u", a); }
void print(long a){ printf("%ld", a); }
void print(long long a){ printf("%lld", a); }
void print(unsigned long long a){ printf("%llu", a); }
void print(char a){ printf("%c", a); }
void print(char *a){ printf("%s", a); }
void print(const char *a){ printf("%s", a); }
void print(double a){ printf("%.15f", a); }
void print(long double a){ printf("%.15Lf", a); }
void print(const string& a){ for(auto&& i : a) print(i); }
template<typename T> void print(const complex<T>& a){ if(a.real() >= 0) print('+'); print(a.real()); if(a.imag() >= 0) print('+'); print(a.imag()); print('i'); }
template<typename T> void print(const vector<T>&);
template<typename T, size_t size> void print(const array<T, size>&);
template<typename T, typename L> void print(const pair<T, L>& p);
template<typename T, size_t size> void print(const T (&)[size]);
template<typename T> void print(const vector<T>& a){ if(a.empty()) return; print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } }
template<typename T> void print(const deque<T>& a){ if(a.empty()) return; print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } }
template<typename T, size_t size> void print(const array<T, size>& a){ print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } }
template<typename T, typename L> void print(const pair<T, L>& p){ print(p.first); putchar(' '); print(p.second); }
template<typename T, size_t size> void print(const T (&a)[size]){ print(a[0]); for(auto i = a; ++i != end(a); ){ putchar(' '); print(*i); } }
template<typename T> void print(const T& a){ cout << a; }
int out(){ putchar('\n'); return 0; }
template<typename T> int out(const T& t){ print(t); putchar('\n'); return 0; }
template<typename Head, typename... Tail> int out(const Head& head, const Tail&... tail){ print(head); putchar(' '); out(tail...); return 0; }


ll binary_search(function<bool(ll)> check, ll ok, ll ng) {
assert(check(ok));
	while (abs(ok - ng) > 1) {
		auto x = (ng + ok) / 2;
		if (check(x))
			ok = x;
		else
			ng = x;
	}
	return ok;
}

#endif

0