# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
538547 | 79brue | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++14 | 104 ms | 4084 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>
using namespace std;
typedef long long ll;
int n;
int arr[402];
int DP[2][402][402][3];
int cnt[3];
vector<int> occ[3];
int main(){
scanf("%d", &n);
for(int i=1; i<=n; i++){
char c;
scanf(" %c", &c);
arr[i] = c=='R' ? 0 : c=='G' ? 1 : 2;
cnt[arr[i]]++;
occ[arr[i]].push_back(i);
}
for(int i=0; i<2; i++) for(int j=0; j<=n; j++) for(int k=0; k<=n; k++) for(int l=0; l<3; l++) DP[i][j][k][l]=1e9;
DP[0][0][0][0] = DP[0][0][0][1] = DP[0][0][0][2] = 0;
for(int i=1; i<=n; i++){
int ri = i%2;
for(int j=0; j<=n; j++) for(int k=0; k<=n; k++) for(int l=0; l<3; l++) DP[ri][j][k][l]=1e9;
for(int j=0; j<i && j<=cnt[0]; j++){
for(int k=0; j+k<i && k<=cnt[1]; k++){
int l = i-j-k-1;
if(l>cnt[2]) continue;
for(int d=0; d<3; d++){
if(j<cnt[0] && d!=0) DP[ri][j+1][k][0] = min(DP[ri][j+1][k][0], DP[!ri][j][k][d] + abs(i-occ[0][j]));
if(k<cnt[1] && d!=1) DP[ri][j][k+1][1] = min(DP[ri][j][k+1][1], DP[!ri][j][k][d] + abs(i-occ[1][k]));
if(l<cnt[2] && d!=2) DP[ri][j][k][2] = min(DP[ri][j][k][2], DP[!ri][j][k][d] + abs(i-occ[2][l]));
}
}
}
}
int ans = 1e9;
for(int i=0; i<3; i++) ans = min(ans, DP[n%2][cnt[0]][cnt[1]][i]);
printf("%d", ans==1000000000 ? -1 : ans/2);
}
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... |