結果

問題 No.470 Inverse S+T Problem
ユーザー tentententen
提出日時 2021-03-08 14:44:50
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,797 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 77,780 KB
実行使用メモリ 147,492 KB
最終ジャッジ日時 2024-12-22 14:05:01
合計ジャッジ時間 19,223 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
60,940 KB
testcase_01 AC 122 ms
132,988 KB
testcase_02 AC 122 ms
60,976 KB
testcase_03 AC 106 ms
128,832 KB
testcase_04 AC 123 ms
61,168 KB
testcase_05 AC 114 ms
52,756 KB
testcase_06 AC 414 ms
63,512 KB
testcase_07 AC 768 ms
76,848 KB
testcase_08 AC 471 ms
63,844 KB
testcase_09 AC 128 ms
54,128 KB
testcase_10 AC 143 ms
54,912 KB
testcase_11 AC 348 ms
64,516 KB
testcase_12 AC 129 ms
54,068 KB
testcase_13 AC 132 ms
54,352 KB
testcase_14 AC 157 ms
54,732 KB
testcase_15 AC 167 ms
57,312 KB
testcase_16 AC 140 ms
54,216 KB
testcase_17 AC 157 ms
54,368 KB
testcase_18 AC 134 ms
54,632 KB
testcase_19 AC 173 ms
57,204 KB
testcase_20 AC 125 ms
54,028 KB
testcase_21 AC 128 ms
54,536 KB
testcase_22 AC 117 ms
52,768 KB
testcase_23 AC 116 ms
52,984 KB
testcase_24 AC 130 ms
54,000 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 270 ms
58,756 KB
testcase_29 AC 323 ms
58,988 KB
testcase_30 AC 653 ms
147,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static String[] strings;
    static int n;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        strings = new String[n];
        for (int i = 0; i < n; i++) {
            strings[i] = sc.next();
        }
        check(0, new HashSet<String>(), new boolean[n]);
        System.out.println("Impossible");
    }
    
    static void check(int idx, HashSet<String> used, boolean[] firstOne) {
        if (idx == n) {
            output(firstOne);
            System.exit(0);
        }
        String one = strings[idx].substring(0, 1);
        String two = strings[idx].substring(1, 3);
        if (!used.contains(one) && !used.contains(two)) {
            firstOne[idx] = true;
            used.add(one);
            used.add(two);
            check(idx + 1, used, firstOne);
            used.remove(one);
            used.remove(two);
        }
        one = strings[idx].substring(0, 2);
        two = strings[idx].substring(2, 3);
        if (!used.contains(one) && !used.contains(two)) {
            firstOne[idx] = false;
            used.add(one);
            used.add(two);
            check(idx + 1, used, firstOne);
            used.remove(one);
            used.remove(two);
        }
    }
    
    static void output(boolean[] firstOne) {
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (firstOne[i]) {
                sb.append(strings[i].substring(0, 1)).append(" ").append(strings[i].substring(1, 3));
            } else {
                sb.append(strings[i].substring(0, 2)).append(" ").append(strings[i].substring(2, 3));
            }
            sb.append("\n");
        }
        System.out.print(sb);
    }
}
0