結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | 158b |
提出日時 | 2015-06-28 14:22:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 101 ms / 1,000 ms |
コード長 | 1,088 bytes |
コンパイル時間 | 970 ms |
コンパイル使用メモリ | 93,160 KB |
実行使用メモリ | 9,040 KB |
最終ジャッジ日時 | 2024-07-07 20:31:42 |
合計ジャッジ時間 | 3,639 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 68 ms
8,144 KB |
testcase_01 | AC | 45 ms
9,040 KB |
testcase_02 | AC | 23 ms
6,940 KB |
testcase_03 | AC | 50 ms
8,912 KB |
testcase_04 | AC | 98 ms
8,660 KB |
testcase_05 | AC | 84 ms
7,508 KB |
testcase_06 | AC | 80 ms
7,504 KB |
testcase_07 | AC | 101 ms
8,272 KB |
testcase_08 | AC | 99 ms
7,632 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 45 ms
8,020 KB |
testcase_13 | AC | 70 ms
7,888 KB |
ソースコード
#include <iostream> #include <algorithm> #include <functional> #include <string> #include <climits> #include <vector> #include <numeric> #include <complex> #include <map> #include <bitset> #include <set> 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 data1 = "aaeiuu"; string data2 = "bgmnr*"; string check; char check1[6] = {'a','a','e','i','u','u'}; char check2[6] = {'b','g','m','n','r','*'}; bool flg = false; cin >> n; rep(i,n){ cin >> in; s.push_back(in); } sort(s.begin(), s.end()); do{ do{ check = ""; rep(i,6){ if(check2[i] != '*') check += check2[i]; check += check1[i]; } if(!binary_search(s.begin(), s.end(), check)){ cout << check << endl; return 0; } }while( next_permutation(check2, check2 + 6)); }while( next_permutation(check1, check1 + 6)); cout << "NO" << endl; return 0; }