#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
const bool typetest = 0;
const int N = 4e2 + 5;
const int Inf = 1e9 + 7;
int n;
string s;
int dp[2][N][N][3];
int num[3][3][N][N];
int r[N], g[N], y[N];
int a, b, c;
void Read()
{
cin >> n >> s;
s = " " + s;
for (int i = 1; i <= n; ++i)
{
if (s[i] == 'R')
r[++a] = i;
else if (s[i] == 'G')
g[++b] = i;
else
y[++c] = i;
}
}
void Solve()
{
for (int i = 1; i <= a; ++i)
{
int cnt(0);
for (int j = 0; j <= b; ++j)
{
if (g[j] > r[i])
++cnt;
num[0][1][i][j] = cnt;
}
cnt = 0;
for (int j = 0; j <= c; ++j)
{
if (y[j] > r[i])
++cnt;
num[0][2][i][j] = cnt;
}
}
for (int i = 1; i <= b; ++i)
{
int cnt(0);
for (int j = 0; j <= a; ++j)
{
if (r[j] > g[i])
++cnt;
num[1][0][i][j] = cnt;
}
cnt = 0;
for (int j = 0; j <= c; ++j)
{
if (y[j] > g[i])
++cnt;
num[1][2][i][j] = cnt;
}
}
for (int i = 1; i <= c; ++i)
{
int cnt(0);
for (int j = 0; j <= b; ++j)
{
if (g[j] > y[i])
++cnt;
num[2][1][i][j] = cnt;
}
cnt = 0;
for (int j = 0; j <= a; ++j)
{
if (r[j] > y[i])
++cnt;
num[2][0][i][j] = cnt;
}
}
fill_n(&dp[0][0][0][0], 2 * N * N * 3, Inf);
dp[0][0][0][0] = dp[0][0][0][1] = dp[0][0][0][2] = 0;
for (int i = 0; i <= a; ++i)
{
for (int j = 0; j <= b; ++j)
for (int t = 0; t <= c; ++t)
{
if (i != 0)
dp[i & 1][j][t][0] = min(dp[!(i & 1)][j][t][1], dp[!(i & 1)][j][t][2]) + (r[i] + num[0][1][i][j] + num[0][2][i][t]) - (i + j + t);
else
dp[i & 1][j][t][0] = Inf * (i != 0 || j != 0 || t != 0);
if (j != 0)
dp[i & 1][j][t][1] = min(dp[i & 1][j - 1][t][0], dp[i & 1][j - 1][t][2]) + (g[j] + num[1][0][j][i] + num[1][2][j][t]) - (i + j + t);
else
dp[i & 1][j][t][1] = Inf * (i != 0 || j != 0 || t != 0);
if (t != 0)
dp[i & 1][j][t][2] = min(dp[i & 1][j][t - 1][0], dp[i & 1][j][t - 1][1]) + (y[t] + num[2][0][t][i] + num[2][1][t][j]) - (i + j + t);
else
dp[i & 1][j][t][2] = Inf * (i != 0 || j != 0 || t != 0);
}
}
int ans = min(dp[a & 1][b][c][0], min(dp[a & 1][b][c][1], dp[a & 1][b][c][2]));
cout << (ans == Inf ? -1 : ans);
}
int32_t main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t(1);
if (typetest)
cin >> t;
for (int _ = 1; _ <= t; ++_)
{
Read();
Solve();
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4204 KB |
Output is correct |
2 |
Correct |
3 ms |
4204 KB |
Output is correct |
3 |
Correct |
3 ms |
4204 KB |
Output is correct |
4 |
Correct |
3 ms |
4204 KB |
Output is correct |
5 |
Correct |
3 ms |
4204 KB |
Output is correct |
6 |
Correct |
3 ms |
4224 KB |
Output is correct |
7 |
Correct |
3 ms |
4204 KB |
Output is correct |
8 |
Correct |
3 ms |
4204 KB |
Output is correct |
9 |
Correct |
3 ms |
4204 KB |
Output is correct |
10 |
Correct |
3 ms |
4204 KB |
Output is correct |
11 |
Correct |
3 ms |
4204 KB |
Output is correct |
12 |
Correct |
4 ms |
4204 KB |
Output is correct |
13 |
Incorrect |
3 ms |
4204 KB |
Output isn't correct |
14 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4204 KB |
Output is correct |
2 |
Correct |
3 ms |
4204 KB |
Output is correct |
3 |
Correct |
3 ms |
4204 KB |
Output is correct |
4 |
Correct |
3 ms |
4204 KB |
Output is correct |
5 |
Correct |
3 ms |
4204 KB |
Output is correct |
6 |
Correct |
3 ms |
4224 KB |
Output is correct |
7 |
Correct |
3 ms |
4204 KB |
Output is correct |
8 |
Correct |
3 ms |
4204 KB |
Output is correct |
9 |
Correct |
3 ms |
4204 KB |
Output is correct |
10 |
Correct |
3 ms |
4204 KB |
Output is correct |
11 |
Correct |
3 ms |
4204 KB |
Output is correct |
12 |
Correct |
4 ms |
4204 KB |
Output is correct |
13 |
Incorrect |
3 ms |
4204 KB |
Output isn't correct |
14 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4204 KB |
Output is correct |
2 |
Correct |
4 ms |
5484 KB |
Output is correct |
3 |
Correct |
4 ms |
5484 KB |
Output is correct |
4 |
Correct |
4 ms |
5484 KB |
Output is correct |
5 |
Correct |
4 ms |
5484 KB |
Output is correct |
6 |
Correct |
4 ms |
5484 KB |
Output is correct |
7 |
Correct |
4 ms |
5484 KB |
Output is correct |
8 |
Correct |
4 ms |
5484 KB |
Output is correct |
9 |
Correct |
4 ms |
5504 KB |
Output is correct |
10 |
Correct |
4 ms |
5484 KB |
Output is correct |
11 |
Correct |
5 ms |
5484 KB |
Output is correct |
12 |
Correct |
4 ms |
4844 KB |
Output is correct |
13 |
Correct |
4 ms |
5100 KB |
Output is correct |
14 |
Correct |
4 ms |
5228 KB |
Output is correct |
15 |
Correct |
4 ms |
5484 KB |
Output is correct |
16 |
Correct |
4 ms |
5484 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4204 KB |
Output is correct |
2 |
Correct |
3 ms |
4204 KB |
Output is correct |
3 |
Correct |
3 ms |
4204 KB |
Output is correct |
4 |
Correct |
3 ms |
4204 KB |
Output is correct |
5 |
Correct |
3 ms |
4204 KB |
Output is correct |
6 |
Correct |
3 ms |
4224 KB |
Output is correct |
7 |
Correct |
3 ms |
4204 KB |
Output is correct |
8 |
Correct |
3 ms |
4204 KB |
Output is correct |
9 |
Correct |
3 ms |
4204 KB |
Output is correct |
10 |
Correct |
3 ms |
4204 KB |
Output is correct |
11 |
Correct |
3 ms |
4204 KB |
Output is correct |
12 |
Correct |
4 ms |
4204 KB |
Output is correct |
13 |
Incorrect |
3 ms |
4204 KB |
Output isn't correct |
14 |
Halted |
0 ms |
0 KB |
- |