結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | 158b |
提出日時 | 2015-06-26 23:53:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,200 bytes |
コンパイル時間 | 571 ms |
コンパイル使用メモリ | 81,512 KB |
実行使用メモリ | 9,424 KB |
最終ジャッジ日時 | 2024-07-07 19:19:32 |
合計ジャッジ時間 | 4,031 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
7,472 KB |
testcase_01 | AC | 27 ms
7,368 KB |
testcase_02 | AC | 14 ms
5,456 KB |
testcase_03 | AC | 29 ms
7,500 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 27 ms
7,504 KB |
testcase_13 | AC | 55 ms
8,268 KB |
ソースコード
#include <iostream> #include <algorithm> #include <functional> #include <string> #include <climits> #include <vector> #include <numeric> #include <complex> #include <map> #include <bitset> using namespace std; //#define __int64 long long #define long __int64 #define REP(i,a,b) for(int i=a;i<b;i++) #define rep(i,n) REP(i,0,n) const int Vecy[4] = {0,-1,0,1}; const int Vecx[4] = {1,0,-1,0}; int main(){ int n; vector<string> s; string in; string data = "inabameguru"; string data1 = "iaaeuu"; string data2 = "nbmgr"; string check; int check1[6] = {0,1,2,3,4,5}; int check2[5] = {0,1,2,3,4}; bool flg = true; cin >> n; for(int i=0; i<n; i++){ cin >> in; s.push_back(in); } do{ for(int i=0; i<5; i++){ check2[i] = i; } do{ check = ""; for(int i=0; i<5; i++){ check += data1[ check1[i] ]; check += data2[ check2[i] ]; } check += data1[5]; flg = true; for(int i=0; i<n; i++){ if(check == s[i]){ flg = false; break; } } if(flg){ cout << check << endl; break; } }while( next_permutation(check2, check2 + 5) && !flg); }while( next_permutation(check1, check1 + 6) && !flg); return 0; }