結果

問題 No.1512 作文
ユーザー akaneakane
提出日時 2021-05-21 22:09:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,219 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 207,216 KB
実行使用メモリ 12,968 KB
最終ジャッジ日時 2024-04-18 15:39:52
合計ジャッジ時間 5,852 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 AC 10 ms
6,944 KB
testcase_12 AC 9 ms
6,944 KB
testcase_13 AC 10 ms
6,944 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 3 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 5 ms
6,944 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 4 ms
6,944 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 4 ms
6,944 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 3 ms
6,944 KB
testcase_34 AC 4 ms
6,944 KB
testcase_35 AC 7 ms
6,944 KB
testcase_36 AC 7 ms
6,940 KB
testcase_37 AC 5 ms
6,940 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int ctoi(char x){
    return x - 'a';
}

int main(){
    ios::sync_with_stdio(false);
    int N; cin>>N;

    vector<string> pos;
    rep(i,N){
        string s; cin>>s;
        string t=s;
        sort(s.begin(), s.end());
        if(s==t) pos.push_back(s);
    }
    
    for(string x:pos){
        cerr << x << endl;
    }

    vector<vector<int>> moji(26,vector<int>(26,0));
    for(string x:pos){
        int l=ctoi(x[0]), r=ctoi(x[x.size()-1]);
        int len=x.size();
        moji[l][r]=max(moji[l][r], len);
    }

    rep(i,26){
        rep(j,26){
            cerr << moji[i][j] << " ";
        }cerr << endl;
    }
    cerr << "-------------------" << endl;

    int ans=0;
    vector<int> dp(26,0);
    for(int r=0; r<26; r++){
        for(int l=0; l<=r; l++){
            if(r==l) dp[r] = max(dp[r],moji[r][r]);
            if(r>0 && r!=l){
                dp[r] = max(dp[r], dp[l]+moji[l][r]+moji[r][r]);
            }
        }
        // dp[r] += moji[r][r];
        ans = max(ans,dp[r]);
    }

    rep(i,26){
        cerr << dp[i] << " ";
    }cerr << endl;

    cout << ans << endl;
}
0