# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
98272 | someone_aa | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++17 | 1110 ms | 760100 KiB |
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>
#define ll long long
#define pb push_back
#define mp make_pair
using namespace std;
const int maxn = 410;
const int inf = 1000000;
int dp[maxn][maxn][maxn][3];
int n, arr[maxn];
string code;
vector<int>v[3];
int main() {
cin>>n;
cin>>code;
for(int i=0;i<code.length();i++) {
if(code[i] == 'R') arr[i + 1] = 0;
else if(code[i] == 'G') arr[i + 1] = 1;
else arr[i + 1] = 2;
v[arr[i+1]].pb(i + 1);
}
for(int i=0;i<=n+1;i++) {
for(int j=0;j<=n+1;j++) {
for(int k=0;k<=n+1;k++) {
for(int l=0;l<=2;l++) {
dp[i][j][k][l] = inf;
}
}
}
}
dp[0][0][0][0] = dp[0][0][0][1] = dp[0][0][0][2] = 0;
for(int c0=0;c0<=v[0].size();c0++) {
for(int c1=0;c1<=v[1].size();c1++) {
for(int c2=0;c2<=v[2].size();c2++) {
for(int last=0;last<=2;last++) {
if(dp[c0][c1][c2][last] == inf) continue;
for(int nxt=0;nxt<=2;nxt++) {
if(last == nxt) continue;
if(nxt == 0 && c0 < v[0].size()) {
dp[c0+1][c1][c2][0] = min(dp[c0+1][c1][c2][0], dp[c0][c1][c2][last] + abs(v[0][c0] - (c0+c1+c2+1)));
}
else if(nxt == 1 && c1 < v[1].size()) {
dp[c0][c1+1][c2][1] = min(dp[c0][c1+1][c2][1], dp[c0][c1][c2][last] + abs(v[1][c1] - (c0+c1+c2+1)));
}
else if(nxt == 2 && c2 < v[2].size()) {
dp[c0][c1][c2+1][2] = min(dp[c0][c1][c2+1][2], dp[c0][c1][c2][last] + abs(v[2][c2] - (c0+c1+c2+1)));
}
}
}
}
}
}
int result = min(min(dp[v[0].size()][v[1].size()][v[2].size()][0], dp[v[0].size()][v[1].size()][v[2].size()][1]), dp[v[0].size()][v[1].size()][v[2].size()][2]);
if(result == inf) {
cout<<"-1\n";
return 0;
}
cout<<(result/2)<<"\n";
return 0;
}
Compilation message (stderr)
# | 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... |