# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
98272 | someone_aa | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++17 | 1110 ms | 760100 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (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... |