結果

問題 No.205 マージして辞書順最小
ユーザー thorikawathorikawa
提出日時 2015-05-08 23:44:06
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,649 bytes
コンパイル時間 2,932 ms
コンパイル使用メモリ 79,328 KB
実行使用メモリ 369,196 KB
最終ジャッジ日時 2024-07-05 20:44:48
合計ジャッジ時間 42,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
39,616 KB
testcase_01 AC 133 ms
41,032 KB
testcase_02 AC 702 ms
80,132 KB
testcase_03 AC 711 ms
80,100 KB
testcase_04 AC 680 ms
79,904 KB
testcase_05 AC 648 ms
80,164 KB
testcase_06 AC 177 ms
42,480 KB
testcase_07 AC 4,969 ms
368,876 KB
testcase_08 TLE -
testcase_09 AC 4,786 ms
369,060 KB
testcase_10 TLE -
testcase_11 AC 4,998 ms
368,508 KB
testcase_12 AC 4,978 ms
368,752 KB
testcase_13 AC 4,983 ms
369,196 KB
testcase_14 AC 222 ms
46,464 KB
testcase_15 AC 134 ms
41,444 KB
testcase_16 AC 175 ms
42,288 KB
testcase_17 AC 167 ms
42,008 KB
testcase_18 AC 164 ms
42,484 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