結果

問題 No.1512 作文
ユーザー tentententen
提出日時 2023-02-20 17:42:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 2,462 bytes
コンパイル時間 3,253 ms
コンパイル使用メモリ 85,040 KB
実行使用メモリ 134,600 KB
最終ジャッジ日時 2024-07-21 09:27:29
合計ジャッジ時間 13,496 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,012 KB
testcase_01 AC 53 ms
37,028 KB
testcase_02 AC 53 ms
36,876 KB
testcase_03 AC 52 ms
36,960 KB
testcase_04 AC 650 ms
88,360 KB
testcase_05 AC 629 ms
88,312 KB
testcase_06 AC 626 ms
88,592 KB
testcase_07 AC 610 ms
88,256 KB
testcase_08 AC 627 ms
88,860 KB
testcase_09 AC 104 ms
38,816 KB
testcase_10 AC 105 ms
38,676 KB
testcase_11 AC 106 ms
38,680 KB
testcase_12 AC 103 ms
38,984 KB
testcase_13 AC 103 ms
38,856 KB
testcase_14 AC 154 ms
41,640 KB
testcase_15 AC 154 ms
41,804 KB
testcase_16 AC 148 ms
41,668 KB
testcase_17 AC 154 ms
41,668 KB
testcase_18 AC 153 ms
41,564 KB
testcase_19 AC 153 ms
41,564 KB
testcase_20 AC 154 ms
41,604 KB
testcase_21 AC 57 ms
37,280 KB
testcase_22 AC 54 ms
37,148 KB
testcase_23 AC 60 ms
36,956 KB
testcase_24 AC 61 ms
37,240 KB
testcase_25 AC 60 ms
37,156 KB
testcase_26 AC 52 ms
37,012 KB
testcase_27 AC 52 ms
36,848 KB
testcase_28 AC 53 ms
36,884 KB
testcase_29 AC 52 ms
36,840 KB
testcase_30 AC 53 ms
37,000 KB
testcase_31 AC 54 ms
37,144 KB
testcase_32 AC 56 ms
37,120 KB
testcase_33 AC 53 ms
37,008 KB
testcase_34 AC 81 ms
37,776 KB
testcase_35 AC 128 ms
39,652 KB
testcase_36 AC 127 ms
39,560 KB
testcase_37 AC 98 ms
38,860 KB
testcase_38 AC 139 ms
39,944 KB
testcase_39 AC 144 ms
40,260 KB
testcase_40 AC 756 ms
134,600 KB
testcase_41 AC 701 ms
118,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<String> base = 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++) {
            boolean enable = true;
            String s = sc.next();
            for (int j = 0; j < s.length() - 1 && enable; j++) {
                enable = (s.charAt(j) <= s.charAt(j + 1));
            }
            if (enable) {
                base.add(s);
            }
        }
        dp = new int[base.size()][26];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        Collections.sort(base);
        System.out.println(dfw(base.size() - 1, 25));
    }
    
    static int dfw(int idx, int v) {
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = dfw(idx - 1, v);
            String s = base.get(idx);
            if (s.charAt(s.length() - 1) - 'a' <= v) {
                dp[idx][v] = Math.max(dp[idx][v], dfw(idx - 1, s.charAt(0) - 'a') + s.length());
            }
        }
        return dp[idx][v];
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0