結果

問題 No.1512 作文
ユーザー rianoriano
提出日時 2021-05-21 23:18:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 750 bytes
コンパイル時間 1,437 ms
コンパイル使用メモリ 168,624 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-10 10:11:21
合計ジャッジ時間 2,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 6 ms
6,816 KB
testcase_10 AC 5 ms
6,816 KB
testcase_11 AC 6 ms
6,816 KB
testcase_12 AC 6 ms
6,824 KB
testcase_13 AC 6 ms
6,816 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
6,820 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,816 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 WA -
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 6 ms
6,820 KB
testcase_36 WA -
testcase_37 AC 4 ms
6,820 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define Pr pair<ll,ll>
#define Tp tuple<ll,ll,ll>
using Graph = vector<vector<Pr>>;

ll mod = 998244353;

int main() {
    ll N; cin >> N;
    ll dp[26];
    rep(i,26) dp[i] = 0;
    rep(i,N){
        string S; cin >> S;
        int n = S.size();
        int num = 0; bool ok = true;
        int ini = S[0]-'a';
        rep(j,n){
            if(num>(S[j]-'a')) ok = false;
            if(num<(S[j]-'a')) num = S[j]-'a';
        }
        if(ok){
            rep(j,26){
                if(j<=ini) dp[num] = max(dp[num],dp[j]+n);
            }
        }
    }
    ll ans = 0;
    rep(i,26) ans = max(ans,dp[i]);
    cout << ans <<  endl;
}
0