結果

問題 No.233 めぐるはめぐる (3)
ユーザー GrenacheGrenache
提出日時 2015-06-26 23:46:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 997 ms / 1,000 ms
コード長 2,231 bytes
コンパイル時間 3,309 ms
コンパイル使用メモリ 78,680 KB
実行使用メモリ 75,372 KB
最終ジャッジ日時 2024-07-07 18:39:02
合計ジャッジ時間 13,202 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
65,496 KB
testcase_01 AC 375 ms
55,716 KB
testcase_02 AC 339 ms
51,836 KB
testcase_03 AC 459 ms
56,208 KB
testcase_04 AC 954 ms
73,236 KB
testcase_05 AC 941 ms
73,028 KB
testcase_06 AC 926 ms
75,292 KB
testcase_07 AC 901 ms
75,372 KB
testcase_08 AC 997 ms
72,956 KB
testcase_09 AC 108 ms
41,236 KB
testcase_10 AC 102 ms
40,268 KB
testcase_11 AC 108 ms
41,320 KB
testcase_12 AC 470 ms
55,852 KB
testcase_13 AC 576 ms
65,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;


public class Main_yukicoder233 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        hs = new HashSet<String>();
        for (int i = 0; i < n; i++) {
        	String s = sc.next();
        	hs.add(s);
        }

		used = new boolean[si.length];
		perm = new int[si.length];
		permutation(0, si.length);
        
        System.out.println("NO");
        
        sc.close();
    }

    static Set<String> hs;
    
    static char[] si = {'n', 'b', 'm', 'g', 'r'};
    static char[] bo = {'i', 'a', 'a', 'e', 'u', 'u'};
    
	static boolean[] used;
	static int[] perm;
	static boolean[] used2;
	static int[] perm2;

	// {0, 1, 2, 3, ...., n - 1}の並び替えn!通りを生成する
	static void permutation(int pos, int n) {
		if (pos == n) {
			
			used2 = new boolean[bo.length];
			perm2 = new int[bo.length];
			permutation2(0, bo.length);
				
			return;
		}
		// perm[]のpos番目を0~n-1のどれにするかのループ
		for (int i = 0; i < n; i++) {
			if (!used[i]) {
				perm[pos] = i;
				// iを使ったのでフラグをtrue
				used[i] = true;
				permutation(pos + 1, n);
				// 戻ってきたらフラグを戻す
				used[i] = false;
			}
		}
		
		return;
	}

	// {0, 1, 2, 3, ...., n - 1}の並び替えn!通りを生成する
	static void permutation2(int pos, int n) {
		if (pos == n) {
			// perm[] に対する操作
			StringBuilder sb = new StringBuilder();
			for (int i = 0; i < si.length; i++) {
				sb.append(si[perm[i]]);
				sb.append(bo[perm2[i]]);
			}

			for (int i = 0; i < si.length; i++) {
				StringBuilder tmp = new StringBuilder(sb);
				tmp.insert(i * 2, bo[perm2[bo.length - 1]]);

				if (!hs.contains(tmp.toString())) {
					System.out.println(tmp);
					System.exit(0);
				}
			}

			return;
		}
		// perm[]のpos番目を0~n-1のどれにするかのループ
		for (int i = 0; i < n; i++) {
			if (!used2[i]) {
				perm2[pos] = i;
				// iを使ったのでフラグをtrue
				used2[i] = true;
				permutation2(pos + 1, n);
				// 戻ってきたらフラグを戻す
				used2[i] = false;
			}
		}
		
		return;
	}
}
0