結果

問題 No.517 壊れたアクセサリー
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-28 22:13:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-12 10:54:00
合計ジャッジ時間 1,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 36 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 AC 33 ms
10,880 KB
testcase_11 AC 32 ms
11,008 KB
testcase_12 AC 33 ms
10,880 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 33 ms
10,752 KB
testcase_16 AC 33 ms
10,880 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 32 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def atoi(a):
    return ord(a) - ord("A")


def itoa(i):
    return chr(i + ord("A"))


def main():
    N = int(input())
    S = [input() for _ in range(N)]
    M = int(input())
    T = [input() for _ in range(M)]

    if N == M == 1:
        return S[0]

    same = set(S).intersection(set(T))
    if same:
        return -1

    atob = [-1] * 26
    btoa = [-1] * 26
    for s in S:
        for a, b in zip(s[:-1], s[1:]):
            i = atoi(a)
            j = atoi(b)
            atob[i] = j
            btoa[j] = i
    for t in T:
        for a, b in zip(t[:-1], t[1:]):
            i = atoi(a)
            j = atoi(b)
            if atob[i] == -1:
                atob[i] = j
                btoa[j] = i
            elif atob[i] != j:
                return -1

    now = -1
    for i in range(26):
        if atob[i] != -1 and btoa[i] == -1:
            now = i
            break
    ans = []
    while now != -1:
        ans.append(now)
        now = atob[now]
    res = "".join(itoa(i) for i in ans)
    return res


print(main())
0