| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 199064 | mahmoudbadawy | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++17 | 699 ms | 774708 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector<int> pos[3];
int mem[404][404][404][3];
int n;
string s;
int go(int x,int y,int z,int las)
{
if(x+y+z==n) return 0;
int &ret=mem[x][y][z][las];
if(ret!=-1) return ret;
ret=(1<<30);
int cpos=x+y+z;
if(x<pos[0].size()&&(las!=0||cpos==0))
ret=min(ret,go(x+1,y,z,0)+abs(cpos-pos[0][x]));
if(y<pos[1].size()&&(las!=1||cpos==0))
ret=min(ret,go(x,y+1,z,1)+abs(cpos-pos[1][y]));
if(z<pos[2].size()&&(las!=2||cpos==0))
ret=min(ret,go(x,y,z+1,2)+abs(cpos-pos[2][z]));
return ret;
}
int main()
{
cin >> n >> s;
memset(mem,-1,sizeof mem);
for(int i=0;i<n;i++)
{
if(s[i]=='R') pos[0].push_back(i);
else if(s[i]=='G') pos[1].push_back(i);
else pos[2].push_back(i);
}
int ans=go(0,0,0,0);
if(ans>=(1<<30)) ans=-1;
else ans/=2;
cout << ans << endl;
}컴파일 시 표준 에러 (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... | ||||
