結果

問題 No.470 Inverse S+T Problem
ユーザー tentententen
提出日時 2020-12-24 13:44:32
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,417 bytes
コンパイル時間 1,988 ms
コンパイル使用メモリ 79,908 KB
実行使用メモリ 72,036 KB
最終ジャッジ日時 2024-06-01 23:06:24
合計ジャッジ時間 10,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,408 KB
testcase_01 AC 102 ms
52,884 KB
testcase_02 AC 115 ms
54,148 KB
testcase_03 AC 106 ms
53,236 KB
testcase_04 AC 109 ms
53,244 KB
testcase_05 AC 99 ms
52,808 KB
testcase_06 AC 364 ms
59,712 KB
testcase_07 AC 662 ms
72,036 KB
testcase_08 AC 417 ms
59,936 KB
testcase_09 AC 125 ms
54,128 KB
testcase_10 AC 121 ms
54,384 KB
testcase_11 AC 304 ms
64,812 KB
testcase_12 AC 110 ms
53,056 KB
testcase_13 AC 127 ms
54,192 KB
testcase_14 AC 152 ms
54,744 KB
testcase_15 AC 157 ms
56,696 KB
testcase_16 AC 107 ms
53,004 KB
testcase_17 AC 122 ms
53,960 KB
testcase_18 AC 126 ms
54,100 KB
testcase_19 AC 156 ms
56,800 KB
testcase_20 AC 119 ms
53,836 KB
testcase_21 AC 115 ms
53,368 KB
testcase_22 AC 128 ms
54,220 KB
testcase_23 AC 129 ms
54,268 KB
testcase_24 AC 120 ms
54,048 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static HashSet<Integer> used = new HashSet<>();
    static int[] base;
    static int[] lefts;
    static int[] rights;
    static int n;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        base = new int[n];
        lefts = new int[n];
        rights = new int[n];
        for (int i = 0; i < n; i++) {
            base[i] = getNum(sc.next().toCharArray());
        }
        check(0);
        System.out.println("Impossible");
    }
    
    static void check(int idx) {
        if (idx == n) {
            output();
            System.exit(0);
        }
        lefts[idx] = base[idx] / (54 * 54);
        rights[idx] = base[idx] % (54 * 54);
        if (!used.contains(lefts[idx]) && !used.contains(rights[idx])) {
            used.add(lefts[idx]);
            used.add(rights[idx]);
            check(idx + 1);
            used.remove(lefts[idx]);
            used.remove(rights[idx]);
        }
        lefts[idx] = base[idx] / 54;
        rights[idx] = base[idx] % 54;
        if (!used.contains(lefts[idx]) && !used.contains(rights[idx])) {
            used.add(lefts[idx]);
            used.add(rights[idx]);
            check(idx + 1);
            used.remove(lefts[idx]);
            used.remove(rights[idx]);
        }
    }
    
    static void output() {
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            sb.append(getStr(lefts[i])).append(" ").append(getStr(rights[i])).append("\n");
        }
        System.out.print(sb);
    }
    
    static String getStr(int x) {
        StringBuilder sb = new StringBuilder();
        if (x < 54) {
            sb.append(getChar(x));
        } else {
            sb.append(getChar(x / 54)).append(getChar(x % 54));
        }
        return sb.toString();
    }
    
    static char getChar(int x) {
        if (x <= 26) {
            return (char)(x + 'A' - 1);
        } else {
            return (char)(x - 27 + 'a' - 1);
        }
    }
    
    static int getNum(char[] arr) {
        int value = 0;
        for (char c : arr) {
            value *= 54;
            value += getNum(c);
        }
        return value;
    }
    
    static int getNum(char c) {
        if (c <= 'Z') {
            return c - 'A' + 1;
        } else {
            return 27 + c - 'a' + 1;
        }
    }
    
}
0