# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1022634 | ttamx | Miners (IOI07_miners) | C++17 | 133 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+5;
const int INF=INT_MAX/2;
int n;
int dp[2][4][4][4][4];
string s;
int ans;
int calc(int a,int b,int c){
if(a==0)return (b==0||b==c)?1:2;
if(a==b&&a==c)return 1;
if(a==b||a==c||b==c)return 2;
return 3;
}
void chmax(int &x,int v){
if(v>x)x=v;
}
void clear(int i){
for(int x=0;x<4;x++){
for(int y=0;y<4;y++){
for(int z=0;z<4;z++){
for(int w=0;w<4;w++){
dp[i&1][x][y][z][w]=-INF;
}
}
}
}
}
int main(){
cin.tie(nullptr)->sync_with_stdio(false);
cin >> n;
cin >> s;
clear(0);
dp[0][0][0][0][0]=0;
for(int i=0;i<n;i++){
clear(i+1);
int v=s[i]=='M'?1:s[i]=='F'?2:3;
for(int x=0;x<4;x++){
for(int y=0;y<4;y++){
for(int z=0;z<4;z++){
for(int w=0;w<4;w++){
chmax(dp[i&1^1][x][y][w][v],dp[i&1][x][y][z][w]+calc(z,w,v));
chmax(dp[i&1^1][y][v][z][w],dp[i&1][x][y][z][w]+calc(x,y,v));
}
}
}
}
}
for(int x=0;x<4;x++){
for(int y=0;y<4;y++){
for(int z=0;z<4;z++){
for(int w=0;w<4;w++){
chmax(ans,dp[n&1][x][y][z][w]);
}
}
}
}
cout << ans;
}
컴파일 시 표준 에러 (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... |
# | 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... |
# | 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... |