답안 #394910

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
394910 2021-04-27T13:28:39 Z Aryan_Raina Miners (IOI07_miners) C++14
92 / 100
1500 ms 57404 KB
#include <bits/stdc++.h>
using namespace std; 

#define int long long
#define ld long double
#define ar array
 
const int INF = 1e17;
const int MOD = 998244353;

const int MXN = 1e5+9;
int dp[MXN][3][3][3][3];

void amax(int &a, int b) { a = max(a, b); }
int32_t main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie();
    int n; string s; cin>>n>>s;
    for (int j = 0; j < 3; j++)
            for (int k = 0; k < 3; k++)
                for (int l = 0; l < 3; l++)
                    for (int m = 0; m < 3; m++) 
                        dp[0][j][k][l][m] = -6;
    for (int i = 1; i <= n; i++) {
        int cur = -1;
        if (s[i-1] == 'M') cur = 0;
        if (s[i-1] == 'F') cur = 1;
        if (s[i-1] == 'B') cur = 2;
        for (int j = 0; j < 3; j++)
            for (int k = 0; k < 3; k++)
                for (int l = 0; l < 3; l++)
                    for (int m = 0; m < 3; m++) 
                        dp[i][j][k][l][m] = -INF;
        for (int j = 0; j < 3; j++) {
            for (int k = 0; k < 3; k++) {
                for (int l = 0; l < 3; l++) {
                    for (int m = 0; m < 3; m++) {
                        int x1 = set<int>{j,k,cur}.size();
                        int x2 = set<int>{l,m,cur}.size();
                        amax(dp[i][k][cur][l][m], dp[i-1][j][k][l][m] + x1);
                        amax(dp[i][j][k][m][cur], dp[i-1][j][k][l][m] + x2);
                    }
                }
            }
        }
    }
    int ans = -INF;
    for (int j = 0; j < 3; j++)
        for (int k = 0; k < 3; k++)
            for (int l = 0; l < 3; l++)
                for (int m = 0; m < 3; m++) 
                    amax(ans, dp[n][j][k][l][m]);
    cout<<ans<<"\n";
} 
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 332 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 332 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 332 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 332 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 332 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 18 ms 880 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 97 ms 3532 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 177 ms 6580 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 498 ms 16152 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1379 ms 48036 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1579 ms 57404 KB Time limit exceeded