結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | tenten |
提出日時 | 2022-09-05 14:23:06 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,910 bytes |
コンパイル時間 | 2,587 ms |
コンパイル使用メモリ | 78,508 KB |
実行使用メモリ | 759,044 KB |
最終ジャッジ日時 | 2024-11-20 14:28:22 |
合計ジャッジ時間 | 49,257 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
38,408 KB |
testcase_01 | AC | 81 ms
38,228 KB |
testcase_02 | AC | 52 ms
36,568 KB |
testcase_03 | AC | 85 ms
38,464 KB |
testcase_04 | AC | 81 ms
38,504 KB |
testcase_05 | AC | 81 ms
38,468 KB |
testcase_06 | AC | 80 ms
38,196 KB |
testcase_07 | AC | 79 ms
38,108 KB |
testcase_08 | AC | 94 ms
40,320 KB |
testcase_09 | AC | 101 ms
40,532 KB |
testcase_10 | AC | 140 ms
44,548 KB |
testcase_11 | AC | 133 ms
44,520 KB |
testcase_12 | AC | 137 ms
43,664 KB |
testcase_13 | AC | 137 ms
44,504 KB |
testcase_14 | AC | 151 ms
44,564 KB |
testcase_15 | AC | 138 ms
44,108 KB |
testcase_16 | AC | 135 ms
44,444 KB |
testcase_17 | TLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | TLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
ソースコード
import java.io.*; import java.util.*; public class Main { static char[][] field; static int h; static int w; static String[][] dp; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); h = sc.nextInt(); w = sc.nextInt(); field = new char[h][]; for (int i = 0; i < h; i++) { field[i] = sc.next().toCharArray(); } dp = new String[h][w]; dp[h - 1][w - 1] = String.valueOf(field[h - 1][w - 1]); System.out.println(dfw(0, 0)); } static String dfw(int r, int c) { if (dp[r][c] == null) { if (r == h - 1) { dp[r][c] = field[r][c] + dfw(r, c + 1); } else if (c == w - 1) { dp[r][c] = field[r][c] + dfw(r + 1, c); } else { String s1 = dfw(r, c + 1); String s2 = dfw(r + 1, c); if (s1.compareTo(s2) < 0) { dp[r][c] = field[r][c] + s1; } else { dp[r][c] = field[r][c] + s2; } } } return dp[r][c]; } } 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(); } }