이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h> //Andrei Alexandru a.k.a Sho10
#define ll long long
#define double long double
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#define all(a) (a).begin(), (a).end()
#define f first
#define s second
#define pb push_back
#define mp make_pair
#define pi pair
#define rc(s) return cout<<s,0
#define endl '\n'
#define mod 1000007
#define PI 3.14159265359
#define MAXN 100005
#define INF 1000000005
#define LINF 1000000000000000005ll
#define CODE_START ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
ll n,dp[5][5][5][5][5],a[100005];
string s;
ll check(ll f,ll s,ll t){
ll cnt=0;
for(ll i=1;i<=3;i++)
{
if(f==i||s==i||t==i){
cnt++;
}
}
return cnt;
}
int32_t main(){
CODE_START;
cin>>n;
cin>>s;
for(ll i=0;i<s.size();i++)
{
if(s[i]=='M'){
a[i+1]=1;
}else if(s[i]=='F'){
a[i+1]=2;
}else if(s[i]=='B'){
a[i+1]=3;
}
}
for(ll x=n+1;x>=1;x--)
{
for(ll i=0;i<4;i++){
for(ll j=0;j<4;j++){
for(ll k=0;k<4;k++){
for(ll l=0;l<4;l++){
if(x==n+1){
dp[x%2][i][j][k][l]=0;
}else {
dp[x%2][i][j][k][l]=max(check(a[x],i,j)+dp[(x%2)^1][a[x]][i][k][l],check(a[x],k,l)+dp[(x%2)^1][i][j][a[x]][k]);
}
}
}
}
}
}
cout<<dp[1][0][0][0][0]<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
miners.cpp: In function 'int32_t main()':
miners.cpp:37:13: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | for(ll i=0;i<s.size();i++)
| ~^~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |