結果

問題 No.1512 作文
ユーザー tenten
提出日時 2024-04-23 17:55:46
言語 Java
(openjdk 23)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 2,721 bytes
コンパイル時間 4,722 ms
コンパイル使用メモリ 81,528 KB
実行使用メモリ 95,792 KB
最終ジャッジ日時 2024-10-15 18:33:53
合計ジャッジ時間 14,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static List<MyString> values = new ArrayList<>();
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        while (n-- > 0) {
            String s = sc.next();
            if (isGood(s)) {
                values.add(new MyString(s));
            }
        }
        Collections.sort(values);
        dp = new int[values.size()][26];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(values.size() - 1, 25));
    }
    
    static int dfw(int idx, int v) {
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            if (v >= values.get(idx).right) {
                dp[idx][v] = Math.max(dfw(idx - 1, v), dfw(idx - 1, values.get(idx).left) + values.get(idx).length);
            } else {
                dp[idx][v] = dfw(idx - 1, v);
            }
        }
        return dp[idx][v];
    } 
    
    static boolean isGood(String s) {
        for (int i = 0; i < s.length() - 1; i++) {
            if (s.charAt(i) > s.charAt(i + 1)) {
                return false;
            }
        }
        return true;
    }
    
    static class MyString implements Comparable<MyString> {
        int left;
        int right;
        int length;
        
        public MyString(String s) {
            length = s.length();
            left = s.charAt(0) - 'a';
            right = s.charAt(length - 1) - 'a';
        }
        
        public int compareTo(MyString another) {
            if (right == another.right) {
                return left - another.left;
            } else {
                return right - another.right;
            }
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0