結果
問題 | No.1512 作文 |
ユーザー | tenten |
提出日時 | 2023-08-04 13:05:04 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 763 ms / 2,000 ms |
コード長 | 3,135 bytes |
コンパイル時間 | 2,777 ms |
コンパイル使用メモリ | 85,100 KB |
実行使用メモリ | 105,948 KB |
最終ジャッジ日時 | 2024-10-14 09:59:23 |
合計ジャッジ時間 | 11,993 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
37,164 KB |
testcase_01 | AC | 53 ms
37,128 KB |
testcase_02 | AC | 54 ms
36,944 KB |
testcase_03 | AC | 54 ms
37,332 KB |
testcase_04 | AC | 509 ms
74,896 KB |
testcase_05 | AC | 515 ms
75,052 KB |
testcase_06 | AC | 511 ms
74,848 KB |
testcase_07 | AC | 510 ms
74,656 KB |
testcase_08 | AC | 508 ms
75,232 KB |
testcase_09 | AC | 95 ms
39,828 KB |
testcase_10 | AC | 107 ms
39,896 KB |
testcase_11 | AC | 107 ms
39,712 KB |
testcase_12 | AC | 109 ms
39,820 KB |
testcase_13 | AC | 109 ms
39,936 KB |
testcase_14 | AC | 141 ms
42,380 KB |
testcase_15 | AC | 141 ms
42,260 KB |
testcase_16 | AC | 148 ms
42,500 KB |
testcase_17 | AC | 138 ms
42,388 KB |
testcase_18 | AC | 146 ms
42,416 KB |
testcase_19 | AC | 153 ms
42,684 KB |
testcase_20 | AC | 150 ms
42,360 KB |
testcase_21 | AC | 58 ms
37,348 KB |
testcase_22 | AC | 56 ms
36,892 KB |
testcase_23 | AC | 63 ms
37,172 KB |
testcase_24 | AC | 59 ms
36,892 KB |
testcase_25 | AC | 62 ms
37,292 KB |
testcase_26 | AC | 53 ms
37,052 KB |
testcase_27 | AC | 53 ms
37,132 KB |
testcase_28 | AC | 55 ms
37,248 KB |
testcase_29 | AC | 54 ms
36,888 KB |
testcase_30 | AC | 55 ms
37,192 KB |
testcase_31 | AC | 55 ms
37,332 KB |
testcase_32 | AC | 56 ms
37,268 KB |
testcase_33 | AC | 53 ms
37,152 KB |
testcase_34 | AC | 64 ms
37,160 KB |
testcase_35 | AC | 111 ms
39,996 KB |
testcase_36 | AC | 112 ms
39,812 KB |
testcase_37 | AC | 103 ms
39,324 KB |
testcase_38 | AC | 118 ms
39,728 KB |
testcase_39 | AC | 121 ms
40,148 KB |
testcase_40 | AC | 678 ms
105,948 KB |
testcase_41 | AC | 763 ms
86,712 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static ArrayList<Word> 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++) { char[] inputs = sc.next().toCharArray(); if (isSorted(inputs)) { list.add(new Word(inputs[0] - 'a', inputs[inputs.length - 1] - 'a', inputs.length)); } } dp = new int[list.size()][26]; for (int[] arr : dp) { Arrays.fill(arr, -1); } Collections.sort(list); System.out.println(dfw(list.size() - 1, 25)); } static int dfw(int idx, int v) { if (idx < 0) { return 0; } if (dp[idx][v] < 0) { if (v < list.get(idx).right) { dp[idx][v] = dfw(idx - 1, v); } else { dp[idx][v] = Math.max(dfw(idx - 1, v), dfw(idx - 1, list.get(idx).left) + list.get(idx).length); } } return dp[idx][v]; } static boolean isSorted(char[] chars) { char prev = 'a'; for (char c : chars) { if (c < prev) { return false; } prev = c; } return true; } static class Word implements Comparable<Word> { int left; int right; int length; public Word(int left, int right, int length) { this.left = left; this.right = right; this.length = length; } public int compareTo(Word another) { if (left == another.left) { return right - another.right; } else { return left - another.left; } } } } 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(); } }