結果

問題 No.1512 作文
ユーザー se1ka2se1ka2
提出日時 2021-05-21 21:33:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 838 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 73,540 KB
実行使用メモリ 12,100 KB
最終ジャッジ日時 2024-10-10 07:58:55
合計ジャッジ時間 2,861 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,564 KB
testcase_01 AC 5 ms
10,564 KB
testcase_02 AC 5 ms
11,200 KB
testcase_03 AC 5 ms
10,180 KB
testcase_04 AC 36 ms
11,716 KB
testcase_05 AC 36 ms
12,100 KB
testcase_06 AC 36 ms
11,972 KB
testcase_07 AC 36 ms
11,716 KB
testcase_08 AC 37 ms
11,972 KB
testcase_09 AC 9 ms
11,332 KB
testcase_10 AC 10 ms
10,308 KB
testcase_11 AC 9 ms
10,820 KB
testcase_12 AC 9 ms
10,308 KB
testcase_13 AC 10 ms
10,568 KB
testcase_14 AC 13 ms
10,820 KB
testcase_15 AC 14 ms
11,464 KB
testcase_16 AC 13 ms
10,820 KB
testcase_17 AC 14 ms
11,464 KB
testcase_18 AC 13 ms
10,564 KB
testcase_19 AC 13 ms
11,584 KB
testcase_20 AC 13 ms
11,972 KB
testcase_21 AC 6 ms
10,304 KB
testcase_22 AC 5 ms
10,052 KB
testcase_23 AC 5 ms
10,692 KB
testcase_24 AC 6 ms
10,564 KB
testcase_25 AC 5 ms
9,796 KB
testcase_26 AC 5 ms
9,924 KB
testcase_27 AC 5 ms
11,592 KB
testcase_28 AC 5 ms
10,948 KB
testcase_29 AC 5 ms
10,180 KB
testcase_30 AC 5 ms
10,048 KB
testcase_31 AC 5 ms
10,560 KB
testcase_32 AC 5 ms
11,592 KB
testcase_33 AC 5 ms
9,924 KB
testcase_34 AC 6 ms
10,048 KB
testcase_35 AC 10 ms
10,608 KB
testcase_36 AC 10 ms
10,648 KB
testcase_37 AC 7 ms
11,968 KB
testcase_38 AC 9 ms
10,308 KB
testcase_39 AC 9 ms
11,848 KB
testcase_40 AC 46 ms
12,100 KB
testcase_41 AC 40 ms
12,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
using namespace std;
typedef pair<int, int> P;
typedef pair<P, int> PP;

string s[200005];
PP p[200005];

int main()
{
    int n;
    cin >> n;
    for(int i = 0; i < n; i++) cin >> s[i];
    for(int i = 0; i < n; i++){
        bool f = true;
        int k = s[i].size();
        for(int j = 0; j < k - 1; j++){
            if(s[i][j] > s[i][j + 1]) f = false;
        }
        if(f) p[i] = PP(P(s[i][k - 1] - 'a', s[i][0] - 'a'), k);
        else p[i] = PP(P(-1, -1), k);
    }
    sort(p, p + n);
    int dp[30]{0};
    for(int i = 0; i < n; i++){
        int r = p[i].first.first, l = p[i].first.second, c = p[i].second;
        if(r == -1) continue;
        dp[r] = max(dp[r], dp[l] + c);
        for(int j = 1; j < 26; j++) dp[j] = max(dp[j], dp[j - 1]);
    }
    cout << dp[25] << endl;
}
0