이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector<int> pos[3];
int mem[404][404][404][3];
int vis[404][404][404][3];
int sum[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(vis[x][y][z][las]) return ret;
vis[x][y][z][las]=1;
ret=(1<<30);
int cpos=x+y+z;
if(x<pos[0].size()&&(las!=0||cpos==0))
{
int dif=0;
dif+=max(sum[pos[0][x]][1]-y,0);
dif+=max(sum[pos[0][x]][2]-z,0);
ret=min(ret,go(x+1,y,z,0)+dif);
}
if(y<pos[1].size()&&(las!=1||cpos==0))
{
int dif=0;
dif+=max(sum[pos[1][y]][0]-x,0);
dif+=max(sum[pos[1][y]][2]-z,0);
ret=min(ret,go(x,y+1,z,1)+dif);
}
if(z<pos[2].size()&&(las!=2||cpos==0))
{
int dif=0;
dif+=max(sum[pos[2][z]][0]-x,0);
dif+=max(sum[pos[2][z]][1]-y,0);
ret=min(ret,go(x,y,z+1,2)+dif);
}
return ret;
}
int main()
{
cin >> n >> s;
for(int i=0;i<n;i++)
{
if(s[i]=='R'){sum[i][0]++; pos[0].push_back(i);}
else if(s[i]=='G') {sum[i][1]++; pos[1].push_back(i);}
else {sum[i][2]++; pos[2].push_back(i);}
if(i) for(int j=0;j<3;j++) sum[i][j]+=sum[i-1][j];
}
int ans=go(0,0,0,0);
if(ans>=(1<<30)) ans=-1;
cout << ans << endl;
}
컴파일 시 표준 에러 (stderr) 메시지
joi2019_ho_t3.cpp: In function 'int go(int, int, int, int)':
joi2019_ho_t3.cpp:20:6: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(x<pos[0].size()&&(las!=0||cpos==0))
~^~~~~~~~~~~~~~
joi2019_ho_t3.cpp:27:6: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(y<pos[1].size()&&(las!=1||cpos==0))
~^~~~~~~~~~~~~~
joi2019_ho_t3.cpp:34:6: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(z<pos[2].size()&&(las!=2||cpos==0))
~^~~~~~~~~~~~~~
# | 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... |