# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
170509 | 2019-12-25T14:27:11 Z | stefdasca | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++14 | 77 ms | 6520 KB |
#include<bits/stdc++.h> #define god dimasi5eks #pragma GCC optimize("O3") #define fi first #define se second #define pb push_back #define pf push_front #define mod 1000000007 #define dancila 3.14159265359 #define eps 1e-9 using namespace std; typedef long long ll; int n; string s; vector<int> v[4]; int dp[402][402][402][3]; bool viz[402][402][402][3]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cin >> n; cin >> s; for(int i = 0; i < n; ++i) { if(s[i] == 'R') v[1].pb(i); if(s[i] == 'G') v[2].pb(i); if(s[i] == 'Y') v[3].pb(i); } viz[0][0][0][0] = viz[0][0][0][1] = viz[0][0][0][2] = 1; int mn = (1<<30); for(int i = 0; i < n; ++i) { for(int j = 0; j <= i; ++j) for(int k = 0; k <= i; ++k) for(int lst = 0; lst <= 2; ++lst) { if(!viz[i][j][k][lst]) continue; int chR = j; int chG = k; int chY = i - j - k; // next = rosu if(chR < v[1].size() && lst != 0) { if(!viz[i+1][j+1][k][0] || dp[i+1][j+1][k][0] > dp[i][j][k][lst] + max(0, v[1][chR] - i)) { dp[i+1][j+1][k][0] = dp[i][j][k][lst] + max(0, v[1][chR] - i); viz[i+1][j+1][k][0] = 1; } } if(chG < v[2].size() && lst != 1) { if(!viz[i+1][j][k+1][1] || dp[i+1][j][k+1][1] > dp[i][j][k][lst] + max(0, v[2][chG] - i)) { dp[i+1][j][k+1][1] = dp[i][j][k][lst] + max(0, v[2][chG] - i); viz[i+1][j][k+1][1] = 1; } } if(chY < v[3].size() && lst != 2) { if(!viz[i+1][j][k][2] || dp[i+1][j][k][2] > dp[i][j][k][lst] + max(0, v[3][chY] - i)) { dp[i+1][j][k][2] = dp[i][j][k][lst] + max(0, v[3][chY] - i); viz[i+1][j][k][2] = 1; } } } } for(int i = 0; i <= 2; ++i) if(viz[n][(int)v[1].size()][(int)v[2].size()][i]) mn = min(mn, dp[n][(int)v[1].size()][(int)v[2].size()][i]); if(mn == (1<<30)) mn = -1; cout << mn; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 380 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Correct | 3 ms | 632 KB | Output is correct |
5 | Correct | 2 ms | 760 KB | Output is correct |
6 | Correct | 2 ms | 760 KB | Output is correct |
7 | Correct | 2 ms | 760 KB | Output is correct |
8 | Correct | 2 ms | 760 KB | Output is correct |
9 | Correct | 2 ms | 632 KB | Output is correct |
10 | Correct | 2 ms | 504 KB | Output is correct |
11 | Incorrect | 2 ms | 760 KB | Output isn't correct |
12 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 380 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Correct | 3 ms | 632 KB | Output is correct |
5 | Correct | 2 ms | 760 KB | Output is correct |
6 | Correct | 2 ms | 760 KB | Output is correct |
7 | Correct | 2 ms | 760 KB | Output is correct |
8 | Correct | 2 ms | 760 KB | Output is correct |
9 | Correct | 2 ms | 632 KB | Output is correct |
10 | Correct | 2 ms | 504 KB | Output is correct |
11 | Incorrect | 2 ms | 760 KB | Output isn't correct |
12 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 75 ms | 6456 KB | Output is correct |
3 | Correct | 75 ms | 6360 KB | Output is correct |
4 | Correct | 75 ms | 6520 KB | Output is correct |
5 | Correct | 76 ms | 6520 KB | Output is correct |
6 | Correct | 75 ms | 6364 KB | Output is correct |
7 | Correct | 76 ms | 6520 KB | Output is correct |
8 | Correct | 77 ms | 6392 KB | Output is correct |
9 | Correct | 74 ms | 6400 KB | Output is correct |
10 | Correct | 75 ms | 6392 KB | Output is correct |
11 | Correct | 75 ms | 6396 KB | Output is correct |
12 | Correct | 18 ms | 3448 KB | Output is correct |
13 | Correct | 32 ms | 4472 KB | Output is correct |
14 | Correct | 48 ms | 5496 KB | Output is correct |
15 | Correct | 75 ms | 6484 KB | Output is correct |
16 | Correct | 75 ms | 6364 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 380 KB | Output is correct |
3 | Correct | 2 ms | 376 KB | Output is correct |
4 | Correct | 3 ms | 632 KB | Output is correct |
5 | Correct | 2 ms | 760 KB | Output is correct |
6 | Correct | 2 ms | 760 KB | Output is correct |
7 | Correct | 2 ms | 760 KB | Output is correct |
8 | Correct | 2 ms | 760 KB | Output is correct |
9 | Correct | 2 ms | 632 KB | Output is correct |
10 | Correct | 2 ms | 504 KB | Output is correct |
11 | Incorrect | 2 ms | 760 KB | Output isn't correct |
12 | Halted | 0 ms | 0 KB | - |