結果
| 問題 |
No.355 数当てゲーム(2)
|
| コンテスト | |
| ユーザー |
はまやんはまやん
|
| 提出日時 | 2016-04-01 23:52:46 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 1,615 bytes |
| コンパイル時間 | 2,034 ms |
| コンパイル使用メモリ | 187,636 KB |
| 実行使用メモリ | 25,616 KB |
| 平均クエリ数 | 104.44 |
| 最終ジャッジ日時 | 2024-07-16 09:27:39 |
| 合計ジャッジ時間 | 20,433 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 RE * 51 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)
typedef long long ll;
typedef vector<int> vi;
typedef vector<string> vs;
typedef pair<int, int> pii;
vs make_str(vi a, int num)
{
queue<string> que;
que.push("");
rep(i, 0, num)
{
queue<string> q;
while (!que.empty())
{
string s = que.front(); que.pop();
for (int aa : a) q.push(s + " " + to_string(aa));
}
que = q;
}
vs ret;
while (!que.empty())
{
string s = que.front(); que.pop();
ret.push_back(s);
}
return ret;
}
int main()
{
cout << "0 1 2 3" << endl;
int x, y;
cin >> x >> y;
if (x == 4) return 0;
cout << "4 5 6 7" << endl;
int xx, yy;
cin >> xx >> yy;
if (xx == 4) return 0;
set<int> use;
vs a = make_str(vi{ 0, 1, 2, 3 }, y);
vs b = make_str(vi{ 4, 5, 6, 7 }, yy);
vs c = make_str(vi{ 8, 9 }, 4 - y - yy);
for (string sa : a) for (string sb : b) for(string sc : c)
{
cout << sa;
cout << sb;
cout << sc;
cout << endl;
int x, y;
cin >> x >> y;
if (x == 4) return 0;
if (y == 4)
{
rep(i, 0, 4) if (sa.find(to_string(i)) != string::npos) use.insert(i);
rep(i, 4, 8) if (sb.find(to_string(i)) != string::npos) use.insert(i);
rep(i, 8, 10) if (sc.find(to_string(i)) != string::npos) use.insert(i);
}
}
vi nums;
for (int i : use) nums.push_back(i);
rep(i, 0, 4) rep(j, 0, 4) rep(k, 0, 4) rep(l, 0, 4)
{
if (i == j) continue;
if (i == k) continue;
if (i == l) continue;
if (j == k) continue;
if (j == l) continue;
if (k == l) continue;
printf("%d %d %d %d\n", nums[i], nums[j], nums[k], nums[l]);
if (x == 4) return 0;
}
}
はまやんはまやん