This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int long long
int a[405][3][405][405];
array<int, 3> p[405];
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int n; cin >> n;
vector<int> b[3];
string s; cin>>s;
for(int l=0; l<3; l++) b[l].push_back(0);
for(int i = 1; i <=n; i++){
p[i]=p[i-1];
if(s[i-1]=='R') b[0].push_back(i), p[i][0]++;
if(s[i-1]=='Y') b[1].push_back(i), p[i][1]++;
if(s[i-1]=='G') b[2].push_back(i), p[i][2]++;
}
for(int i=1; i<=n; i++){
for(int l=0; l<3; l++){
for(int j=0; j<=n; j++)
{
for(int f=0; f<=n; f++)
{
a[i][l][j][f]=1e18;
}
}
}
}
for(int l=0; l<3; l++) b[l].push_back(n+1);
int ans=1e18;
for(int i=1; i<=n; i++){
for(int l=0; l<=i&&l<b[0].size()-1; l++){
for(int j=0; j+l<=i&&j<b[1].size()-1; j++){
int k=i-(j+l);
if(k<b[2].size()-1)
for(int t=0; t<3; t++){
int dist=0;
int f=0;
if(t==0) f=l;
else if(t==1) f=j;
else f=k;
dist+=max(0LL, p[b[t][f]][0]-l);
dist+=max(0LL, p[b[t][f]][1]-j);
dist+=max(0LL, p[b[t][f]][2]-k);
for(int g=0; g<3&&f; g++){
if(t==0&&g!=t&&(l>0||i==1))
a[i][t][l][j]=min(a[i-1][g][max(0LL, l-1)][j]+dist, a[i][t][l][j]);
if(t==1&&g!=t&&(j>0||i==1))
a[i][t][l][j]=min(a[i-1][g][l][max(0LL, j-1)]+dist, a[i][t][l][j]);
if(t==2&&g!=t&&(k>0||i==1))
a[i][t][l][j]=min(a[i-1][g][l][j]+dist, a[i][t][l][j]);
}
if(i==n) ans=min(ans, a[i][t][l][j]);
}
}
}
}
if(ans>=1e18) cout<<-1;
else cout<<ans;
}
Compilation message (stderr)
joi2019_ho_t3.cpp: In function 'int main()':
joi2019_ho_t3.cpp:46:29: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
46 | for(int l=0; l<=i&&l<b[0].size()-1; l++){
| ~^~~~~~~~~~~~~~
joi2019_ho_t3.cpp:47:35: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
47 | for(int j=0; j+l<=i&&j<b[1].size()-1; j++){
| ~^~~~~~~~~~~~~~
joi2019_ho_t3.cpp:49:21: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | if(k<b[2].size()-1)
| ~^~~~~~~~~~~~~~
# | 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... |