結果

問題 No.233 めぐるはめぐる (3)
ユーザー btkbtk
提出日時 2015-06-26 23:24:48
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 380 ms / 1,000 ms
コード長 1,328 bytes
コンパイル時間 973 ms
コンパイル使用メモリ 94,484 KB
実行使用メモリ 13,580 KB
最終ジャッジ日時 2023-09-22 01:40:12
合計ジャッジ時間 4,886 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
13,112 KB
testcase_01 AC 66 ms
9,856 KB
testcase_02 AC 31 ms
6,668 KB
testcase_03 AC 76 ms
10,316 KB
testcase_04 AC 327 ms
13,512 KB
testcase_05 AC 180 ms
13,528 KB
testcase_06 AC 259 ms
13,512 KB
testcase_07 AC 380 ms
13,580 KB
testcase_08 AC 379 ms
13,468 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 68 ms
9,920 KB
testcase_13 AC 116 ms
13,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<fstream>
#include<sstream>
#include<string>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<ctime>
#include<stack>
#include<queue>
#include<set>
#include<map>
#include<vector>
#include<list>
#include<algorithm>
#include<utility>
#include<complex>
#include<functional>
using namespace std;


#define input_init stringstream ss; string strtoken, token; istringstream is
#define input_line  getline(cin, strtoken);is.str(strtoken);is.clear(istringstream::goodbit)
#define input_token(num) ss.str(""); ss.clear(stringstream::goodbit); getline(is, token, ','); ss << token; ss >> num

const int d[] = { 0, 2, 4, 6, 8, 10 };
const int dd[] = { 1, 3, 5, 7, 9 };
int main(void){
	set<string> memo;
	int N;
	cin >> N;
	for (int i = 0; i < N; i++){
		string t;
		cin >> t;
		memo.insert(t);
	}
	string T = "inabameguru";
	int ar[] = { 0, 2, 4, 6, 8, 10 };
	int ir[] = { 1, 3, 5, 7, 9 };
	do{
		do{
		string tmp = "inabameguru";
		for (int i = 0; i < 6; i++)tmp[d[i]] = T[ar[i]];
		for (int i = 0; i < 5; i++)tmp[dd[i]] = T[ir[i]];
		for (int j = 0; j < 11; j++){
			swap(tmp[j], tmp[max(0, j - 1)]);

			if (memo.count(tmp) == 0){
				cout << tmp << endl;
				return 0;
			}
		}
		} while (next_permutation(ir, ir + 5));
	} while (next_permutation(ar, ar+6));
	cout << "NO" << endl;
	return(0);
}
0