이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<string>
using namespace std;
int n,k;
int dp[351][351][351];
string kam;
int Czy_zn_C(int t)
{
return kam[t]=='C';
}
int wejdz(int l, int p, int ilemaB)
{
if(dp[l][p][ilemaB]!=0)
return dp[l][p][ilemaB];
if(ilemaB==0)
{
dp[l][p][ilemaB]=1;
return dp[l][p][ilemaB];
}
if(l==p)
{
if(n%2==0)
{
dp[l][p][ilemaB]=1;
}
else
{
if(kam[l]=='C')
dp[l][p][ilemaB]=2;
else
dp[l][p][ilemaB]=1;
}
}
else
{
dp[l][p][ilemaB]=10000;
if((n-(p-l+1))%2==0)
{
//Ruch A
dp[l][p][ilemaB]=min(wejdz(l+1,p,ilemaB)+Czy_zn_C(l),
wejdz(l,p-1,ilemaB)+Czy_zn_C(p));
}
else
{
//Ruch B
dp[l][p][ilemaB]=max(wejdz(l+1,p,ilemaB-Czy_zn_C(l)),
wejdz(l,p-1,ilemaB-Czy_zn_C(p)));
}
}
return dp[l][p][ilemaB];
}
int main()
{
cin>>n>>k;
cin>>kam;
if(wejdz(0,n-1,k)>k)
printf("NE");
else
printf("DA");
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |