Submission #891828

#TimeUsernameProblemLanguageResultExecution timeMemory
891828VvnxGrowing Vegetable is Fun 3 (JOI19_ho_t3)C++14
15 / 100
79 ms257236 KiB
#include<bits/stdc++.h> using namespace std; #define ll int #define pii pair<ll,ll> #define pb push_back #define fi first #define se second const ll N = 403; const ll INF = 1e9; ll n,r,g,b; string s; vector<ll> pos[5]; ll dp[N][N][N][3]; int main() { cin >> n >> s; s = '!' + s; for(int i=1; i<=n; i++) { if(s[i] == 'R') { r++; pos[0].pb(i); } else if(s[i] == 'G') { g++; pos[1].pb(i); } else if(s[i] == 'Y') { b++; pos[2].pb(i); } } for(int i=0; i<=r; i++) { for(int j=0; j<=g; j++) { for(int k=0; k<=b; k++) { for(int l=0; l<=3; l++) dp[i][j][k][l] = INF; } } } dp[0][0][0][0] = 0; dp[0][0][0][1] = 0; dp[0][0][0][2] = 0; for(int i=0; i<=r; i++) { for(int j=0; j<=g; j++) { for(int k=0; k<=b; k++) { if(i) dp[i][j][k][0] = min(dp[i-1][j][k][1],dp[i-1][j][k][2]) + abs(i+j+k-pos[0][i-1]); if(j) dp[i][j][k][1] = min(dp[i][j-1][k][0],dp[i][j-1][k][2]) + abs(i+j+k-pos[1][j-1]); if(k) dp[i][j][k][2] = min(dp[i][j][k-1][0],dp[i][j][k-1][1]) + abs(i+j+k-pos[2][k-1]); } } } ll ans = min({dp[r][g][b][0],dp[r][g][b][1],dp[r][g][b][2]}); if(ans == INF) cout << -1 << endl; else cout << ans/2 << endl; }

Compilation message (stderr)

joi2019_ho_t3.cpp: In function 'int main()':
joi2019_ho_t3.cpp:37:44: warning: iteration 3 invokes undefined behavior [-Waggressive-loop-optimizations]
   37 |     for(int l=0; l<=3; l++) dp[i][j][k][l] = INF;
      |                             ~~~~~~~~~~~~~~~^~~~~
joi2019_ho_t3.cpp:37:19: note: within this loop
   37 |     for(int l=0; l<=3; l++) dp[i][j][k][l] = INF;
      |                  ~^~~
joi2019_ho_t3.cpp:37:42: warning: array subscript 3 is above array bounds of 'int [3]' [-Warray-bounds]
   37 |     for(int l=0; l<=3; l++) dp[i][j][k][l] = INF;
      |                             ~~~~~~~~~~~~~^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...