結果

問題 No.205 マージして辞書順最小
ユーザー thorikawathorikawa
提出日時 2015-05-08 23:40:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 3,849 ms / 5,000 ms
コード長 1,649 bytes
コンパイル時間 1,917 ms
コンパイル使用メモリ 79,368 KB
実行使用メモリ 368,800 KB
最終ジャッジ日時 2024-07-05 20:43:08
合計ジャッジ時間 32,348 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,704 KB
testcase_01 AC 104 ms
40,840 KB
testcase_02 AC 495 ms
80,236 KB
testcase_03 AC 508 ms
80,128 KB
testcase_04 AC 485 ms
79,960 KB
testcase_05 AC 467 ms
79,796 KB
testcase_06 AC 141 ms
42,420 KB
testcase_07 AC 3,849 ms
368,640 KB
testcase_08 AC 3,814 ms
368,728 KB
testcase_09 AC 3,817 ms
368,688 KB
testcase_10 AC 3,814 ms
368,204 KB
testcase_11 AC 3,791 ms
368,592 KB
testcase_12 AC 3,832 ms
368,408 KB
testcase_13 AC 3,828 ms
368,800 KB
testcase_14 AC 178 ms
46,412 KB
testcase_15 AC 96 ms
40,344 KB
testcase_16 AC 139 ms
41,840 KB
testcase_17 AC 122 ms
42,092 KB
testcase_18 AC 132 ms
41,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] argv) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        String[] ss = new String[n];
        for (int i = 0; i < n; ++i) {
            ss[i] = scanner.next();
        }
        String res = ss[0];
        for (int i = 1; i < n; ++i) {
            int len1 = res.length();
            int len2 = ss[i].length();
            String[][] dp = new String[len1 + 1][len2 + 1];
            dp[0][0] = "";
            for (int j = 0; j < len1 + 1; j++) {
                for (int k = 0; k < len2 + 1; k++) {
                    if (j == 0 && k == 0) continue;
                    String s1 = null;
                    String s2 = null;
                    if (k > 0) {
                        s1 = dp[j][k - 1] + ss[i].charAt(k - 1);
                    }
                    if (j > 0) {
                        s2 = dp[j - 1][k] + res.charAt(j - 1);
                    }
                    if (s1 == null) dp[j][k] = s2;
                    else if (s2 == null) dp[j][k] = s1;
                    else {
                        if (s1.compareTo(s2) > 0) {
//                            System.out.println(String.format("dp[%d][%d]=%s", j, k, s2));
                            dp[j][k] = s2;
                        } else {
//                            System.out.println(String.format("dp[%d][%d]=%s", j, k, s1));
                            dp[j][k] = s1;
                        }
                    }
                }
            }
            res = dp[len1][len2];
        }
        System.out.println(res);
    }
}
0