結果

問題 No.517 壊れたアクセサリー
ユーザー htensaihtensai
提出日時 2020-02-18 08:02:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 78,184 KB
実行使用メモリ 50,136 KB
最終ジャッジ日時 2024-10-06 15:23:31
合計ジャッジ時間 3,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
49,872 KB
testcase_01 AC 47 ms
50,084 KB
testcase_02 AC 47 ms
49,876 KB
testcase_03 AC 48 ms
49,900 KB
testcase_04 AC 51 ms
50,080 KB
testcase_05 AC 49 ms
50,004 KB
testcase_06 AC 48 ms
50,000 KB
testcase_07 AC 47 ms
50,136 KB
testcase_08 AC 48 ms
49,996 KB
testcase_09 AC 48 ms
50,024 KB
testcase_10 AC 48 ms
50,028 KB
testcase_11 AC 48 ms
49,816 KB
testcase_12 AC 49 ms
49,896 KB
testcase_13 AC 49 ms
50,012 KB
testcase_14 AC 47 ms
49,824 KB
testcase_15 AC 47 ms
49,952 KB
testcase_16 AC 47 ms
50,020 KB
testcase_17 AC 48 ms
49,876 KB
testcase_18 AC 47 ms
50,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws Exception {
	    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	    int n = Integer.parseInt(br.readLine());
	    int[] next = new int[26];
	    int size = 0;
	    Arrays.fill(next, -1);
	    HashSet<Integer> starts = new HashSet<>();
	    for (int i = 0; i < n; i++) {
	        char[] arr = br.readLine().toCharArray();
	        size += arr.length;
	        for (int j = 0; j < arr.length - 1; j++) {
                next[arr[j] - 'A'] = arr[j + 1] - 'A';
	        }
	        starts.add(arr[0] - 'A');
	    }
	    int m = Integer.parseInt(br.readLine());
	    for (int i = 0; i < m; i++) {
	        char[] arr = br.readLine().toCharArray();
	        for (int j = 0; j < arr.length - 1; j++) {
                next[arr[j] - 'A'] = arr[j + 1] - 'A';
	        }
	    }
	    for (int x : starts) {
	        StringBuilder sb = new StringBuilder();
	        sb.append((char)(x + 'A'));
	        while (next[x] != -1) {
	            x = next[x];
	            sb.append((char)(x + 'A'));
	        }
	        if (sb.length() == size) {
	            System.out.println(sb);
	            return;
	        }
	    }
	    System.out.println(-1);
    }
}
0