結果

問題 No.1512 作文
ユーザー tentententen
提出日時 2022-09-30 12:00:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,320 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 80,144 KB
実行使用メモリ 108,008 KB
最終ジャッジ日時 2024-06-02 02:24:02
合計ジャッジ時間 10,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,320 KB
testcase_01 AC 50 ms
37,432 KB
testcase_02 AC 49 ms
37,648 KB
testcase_03 AC 49 ms
37,436 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 116 ms
43,656 KB
testcase_10 AC 108 ms
42,996 KB
testcase_11 AC 114 ms
42,944 KB
testcase_12 AC 120 ms
43,068 KB
testcase_13 AC 118 ms
43,440 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 61 ms
38,148 KB
testcase_22 AC 56 ms
37,056 KB
testcase_23 AC 78 ms
37,972 KB
testcase_24 AC 79 ms
38,756 KB
testcase_25 AC 77 ms
38,880 KB
testcase_26 AC 50 ms
37,484 KB
testcase_27 AC 50 ms
37,064 KB
testcase_28 AC 49 ms
37,436 KB
testcase_29 AC 51 ms
37,332 KB
testcase_30 AC 51 ms
37,288 KB
testcase_31 AC 52 ms
37,540 KB
testcase_32 AC 54 ms
37,592 KB
testcase_33 AC 50 ms
37,444 KB
testcase_34 AC 60 ms
37,940 KB
testcase_35 AC 115 ms
40,488 KB
testcase_36 AC 110 ms
40,644 KB
testcase_37 AC 99 ms
40,064 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 606 ms
108,008 KB
testcase_41 AC 372 ms
106,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<Unit> units = 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++) {
            Unit x = new Unit(sc.next());
            if (x.isSorted) {
                units.add(x);
            }
        }
        Collections.sort(units);
        dp = new int[units.size()][26];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(units.size() - 1, 25));
    }
    
    static int dfw(int idx, int c) {
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][c] < 0) {
            dp[idx][c] = dfw(idx - 1, c);
            if (units.get(idx).right <= c) {
                dp[idx][c] = Math.max(dp[idx][c], dfw(idx - 1, units.get(idx).left) + units.get(idx).length);
            }
        }
        return dp[idx][c];
    }
    
    static class Unit implements Comparable<Unit> {
        int left;
        int right;
        int length;
        boolean isSorted;
        
        public Unit(String s) {
            this.left = s.charAt(0) - 'a';
            this.right = s.charAt(s.length() - 1) - 'a';
            char[] tmp = s.toCharArray();
            Arrays.sort(tmp);
            isSorted = s.equals(new String(tmp));
            length = s.length();
        }
        
        public int compareTo(Unit another) {
            return right - another.right;
        }
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0