結果

問題 No.1512 作文
ユーザー tentententen
提出日時 2021-05-25 11:06:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 886 ms / 2,000 ms
コード長 2,223 bytes
コンパイル時間 3,635 ms
コンパイル使用メモリ 78,836 KB
実行使用メモリ 130,428 KB
最終ジャッジ日時 2024-10-13 19:25:04
合計ジャッジ時間 12,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,536 KB
testcase_01 AC 47 ms
36,836 KB
testcase_02 AC 47 ms
36,916 KB
testcase_03 AC 48 ms
36,776 KB
testcase_04 AC 580 ms
88,968 KB
testcase_05 AC 596 ms
81,488 KB
testcase_06 AC 568 ms
88,832 KB
testcase_07 AC 553 ms
81,652 KB
testcase_08 AC 537 ms
81,728 KB
testcase_09 AC 98 ms
39,484 KB
testcase_10 AC 99 ms
39,660 KB
testcase_11 AC 100 ms
39,372 KB
testcase_12 AC 98 ms
39,768 KB
testcase_13 AC 98 ms
39,572 KB
testcase_14 AC 139 ms
42,240 KB
testcase_15 AC 128 ms
42,352 KB
testcase_16 AC 143 ms
42,316 KB
testcase_17 AC 136 ms
42,136 KB
testcase_18 AC 134 ms
42,128 KB
testcase_19 AC 139 ms
42,516 KB
testcase_20 AC 141 ms
42,240 KB
testcase_21 AC 51 ms
37,084 KB
testcase_22 AC 49 ms
36,880 KB
testcase_23 AC 55 ms
37,116 KB
testcase_24 AC 53 ms
37,192 KB
testcase_25 AC 51 ms
37,084 KB
testcase_26 AC 46 ms
37,056 KB
testcase_27 AC 46 ms
36,976 KB
testcase_28 AC 47 ms
36,720 KB
testcase_29 AC 46 ms
36,828 KB
testcase_30 AC 46 ms
36,876 KB
testcase_31 AC 48 ms
36,852 KB
testcase_32 AC 49 ms
37,064 KB
testcase_33 AC 46 ms
36,952 KB
testcase_34 AC 62 ms
37,704 KB
testcase_35 AC 99 ms
39,512 KB
testcase_36 AC 90 ms
39,260 KB
testcase_37 AC 84 ms
38,936 KB
testcase_38 AC 110 ms
40,692 KB
testcase_39 AC 113 ms
39,880 KB
testcase_40 AC 773 ms
130,428 KB
testcase_41 AC 886 ms
109,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static ArrayList<String> list = new ArrayList<>();
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        for (int i = 0; i < n; i++) {
            String s = sc.next();
            if (check(s)) {
                list.add(s);
            }
        }
        Collections.sort(list, new Comparator<String>() {
            public int compare(String s1, String s2) {
                if (s1.charAt(s1.length() - 1) == s2.charAt(s2.length() - 1)) {
                    return s1.charAt(0) - s2.charAt(0);
                } else {
                    return s1.charAt(s1.length() - 1) - s2.charAt(s2.length() - 1);
                }
            }
        });
        dp = new int[list.size()][26];
        System.out.println(dfw(list.size() - 1, 25));
    }
    
    static boolean check(String s) {
        char start = 'a';
        for (char c : s.toCharArray()) {
            if (c < start) {
                return false;
            }
            start = c;
        }
        return true;
    }
    
    static int dfw(int idx, int alpha) {
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][alpha] == 0) {
            String s = list.get(idx);
            if (s.charAt(s.length() - 1) - 'a' > alpha) {
                dp[idx][alpha] = dfw(idx - 1, alpha);
            } else {
                dp[idx][alpha] = Math.max(dfw(idx - 1, alpha), dfw(idx - 1, s.charAt(0) - 'a') + s.length());
            }
        }
        return dp[idx][alpha];
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0