#include <bits/stdc++.h>
using namespace std;
#define int long long // a.k.a. TLE creator
#define all(x) x.begin(), x.end()
template<class A, class B> istream& operator >>(istream &o, pair<A, B> &x){return o >> x.first >> x.second;}
template<class A, class B> ostream& operator <<(ostream &o, pair<A, B> &x){return o << x.first << ' ' << x.second << ' ';}
void setIO(){ios::sync_with_stdio(false); cin.tie(0);}
const int INF = INT_MAX, MOD = 998244353, N = 351, K = __lg(N) + 1;
int n, k;
string s;
int dp[N][N][N], pre[N]{};
bool solve(int l = 0, int r = n - 1, int val = 0){
if(~dp[l][r][val])return dp[l][r][val];
if(l > r){
dp[l][r][val] = val < k;
return val < k;
}
int other = pre[n - 1] - pre[r] - (l ? pre[l - 1] : 0) - val;
dp[l][r][val] = (!solve(l + 1, r, other) && !solve(l, r - 1, other));
return dp[l][r][val];
}
signed main(){
setIO();
memset(dp, -1, sizeof dp);
cin >> n >> k >> s;
for(int i = 0; i < n; i++){
pre[i] = (s[i] == 'C') + (i ? pre[i - 1] : 0);
}
cout << (solve() ? "DA\n" : "NE\n");
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
129 ms |
338720 KB |
Output is correct |
2 |
Correct |
125 ms |
338716 KB |
Output is correct |
3 |
Correct |
121 ms |
338768 KB |
Output is correct |
4 |
Incorrect |
119 ms |
338712 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
129 ms |
338720 KB |
Output is correct |
2 |
Correct |
125 ms |
338716 KB |
Output is correct |
3 |
Correct |
121 ms |
338768 KB |
Output is correct |
4 |
Incorrect |
119 ms |
338712 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
129 ms |
338720 KB |
Output is correct |
2 |
Correct |
125 ms |
338716 KB |
Output is correct |
3 |
Correct |
121 ms |
338768 KB |
Output is correct |
4 |
Incorrect |
119 ms |
338712 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |