結果
問題 | No.1512 作文 |
ユーザー | tenten |
提出日時 | 2024-07-29 12:52:54 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,232 ms / 2,000 ms |
コード長 | 2,797 bytes |
コンパイル時間 | 3,228 ms |
コンパイル使用メモリ | 81,576 KB |
実行使用メモリ | 154,748 KB |
最終ジャッジ日時 | 2024-07-29 12:53:09 |
合計ジャッジ時間 | 13,845 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
50,312 KB |
testcase_01 | AC | 51 ms
50,396 KB |
testcase_02 | AC | 51 ms
50,552 KB |
testcase_03 | AC | 51 ms
50,500 KB |
testcase_04 | AC | 652 ms
101,116 KB |
testcase_05 | AC | 660 ms
101,056 KB |
testcase_06 | AC | 650 ms
101,976 KB |
testcase_07 | AC | 644 ms
102,052 KB |
testcase_08 | AC | 640 ms
102,204 KB |
testcase_09 | AC | 99 ms
51,612 KB |
testcase_10 | AC | 102 ms
51,676 KB |
testcase_11 | AC | 103 ms
51,696 KB |
testcase_12 | AC | 102 ms
52,044 KB |
testcase_13 | AC | 105 ms
51,712 KB |
testcase_14 | AC | 148 ms
56,988 KB |
testcase_15 | AC | 144 ms
55,456 KB |
testcase_16 | AC | 150 ms
57,180 KB |
testcase_17 | AC | 149 ms
55,364 KB |
testcase_18 | AC | 143 ms
55,628 KB |
testcase_19 | AC | 150 ms
56,976 KB |
testcase_20 | AC | 137 ms
55,476 KB |
testcase_21 | AC | 55 ms
50,280 KB |
testcase_22 | AC | 53 ms
50,232 KB |
testcase_23 | AC | 57 ms
50,232 KB |
testcase_24 | AC | 57 ms
50,448 KB |
testcase_25 | AC | 57 ms
50,512 KB |
testcase_26 | AC | 55 ms
50,452 KB |
testcase_27 | AC | 52 ms
50,532 KB |
testcase_28 | AC | 53 ms
50,548 KB |
testcase_29 | AC | 55 ms
49,996 KB |
testcase_30 | AC | 52 ms
50,512 KB |
testcase_31 | AC | 52 ms
50,492 KB |
testcase_32 | AC | 57 ms
50,544 KB |
testcase_33 | AC | 54 ms
50,268 KB |
testcase_34 | AC | 78 ms
51,284 KB |
testcase_35 | AC | 115 ms
52,092 KB |
testcase_36 | AC | 107 ms
52,040 KB |
testcase_37 | AC | 86 ms
51,592 KB |
testcase_38 | AC | 127 ms
53,472 KB |
testcase_39 | AC | 134 ms
53,188 KB |
testcase_40 | AC | 801 ms
154,748 KB |
testcase_41 | AC | 1,232 ms
117,932 KB |
ソースコード
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(); for (int i = 0; i < n; i++) { MyString current = new MyString(sc.next()); if (current.isGood()) { values.add(current); } } 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) { dp[idx][v] = Math.max(dfw(idx - 1, v), values.get(idx).last() <= v ? dfw(idx - 1, values.get(idx).first()) + values.get(idx).length() : 0); } return dp[idx][v]; } static class MyString implements Comparable<MyString> { String name; public MyString(String name) { this.name = name; } public int first() { return name.charAt(0) - 'a'; } public int last() { return name.charAt(name.length() - 1) - 'a'; } public int length() { return name.length(); } public boolean isGood() { for (int i = 0; i < name.length() - 1; i++) { if (name.charAt(i) > name.charAt(i + 1)) { return false; } } return true; } public int compareTo(MyString another) { return last() == another.last() ? first() - another.first() : last() - another.last(); } } } 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(); } } }