結果

問題 No.355 数当てゲーム(2)
ユーザー mayoko_mayoko_
提出日時 2016-04-01 23:03:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 1,813 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 91,224 KB
実行使用メモリ 25,580 KB
平均クエリ数 36.92
最終ジャッジ日時 2024-07-16 23:12:15
合計ジャッジ時間 4,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,848 KB
testcase_01 AC 24 ms
24,848 KB
testcase_02 AC 24 ms
24,592 KB
testcase_03 AC 23 ms
25,232 KB
testcase_04 AC 23 ms
25,472 KB
testcase_05 AC 21 ms
24,976 KB
testcase_06 AC 20 ms
24,976 KB
testcase_07 AC 22 ms
25,488 KB
testcase_08 AC 22 ms
24,848 KB
testcase_09 AC 21 ms
24,848 KB
testcase_10 AC 23 ms
25,232 KB
testcase_11 AC 22 ms
25,232 KB
testcase_12 AC 23 ms
25,232 KB
testcase_13 AC 23 ms
25,232 KB
testcase_14 AC 22 ms
24,848 KB
testcase_15 AC 21 ms
24,848 KB
testcase_16 AC 22 ms
24,848 KB
testcase_17 AC 21 ms
24,592 KB
testcase_18 AC 21 ms
24,848 KB
testcase_19 AC 22 ms
25,232 KB
testcase_20 AC 23 ms
25,208 KB
testcase_21 AC 22 ms
24,952 KB
testcase_22 AC 22 ms
25,208 KB
testcase_23 AC 23 ms
24,952 KB
testcase_24 AC 22 ms
24,568 KB
testcase_25 AC 22 ms
25,208 KB
testcase_26 AC 23 ms
25,208 KB
testcase_27 AC 22 ms
24,952 KB
testcase_28 AC 22 ms
24,824 KB
testcase_29 AC 22 ms
25,208 KB
testcase_30 AC 22 ms
24,952 KB
testcase_31 AC 23 ms
24,568 KB
testcase_32 AC 24 ms
24,824 KB
testcase_33 AC 23 ms
25,208 KB
testcase_34 AC 23 ms
24,952 KB
testcase_35 AC 23 ms
24,556 KB
testcase_36 AC 22 ms
24,556 KB
testcase_37 AC 23 ms
25,184 KB
testcase_38 AC 22 ms
25,580 KB
testcase_39 AC 22 ms
24,940 KB
testcase_40 AC 22 ms
24,940 KB
testcase_41 AC 21 ms
25,580 KB
testcase_42 AC 23 ms
25,580 KB
testcase_43 AC 22 ms
25,196 KB
testcase_44 AC 23 ms
24,940 KB
testcase_45 AC 22 ms
24,940 KB
testcase_46 AC 21 ms
25,196 KB
testcase_47 AC 23 ms
25,196 KB
testcase_48 AC 22 ms
24,928 KB
testcase_49 AC 22 ms
24,556 KB
testcase_50 AC 23 ms
24,812 KB
testcase_51 AC 23 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
//#include<cctype>
#include<climits>
#include<iostream>
#include<string>
#include<vector>
#include<map>
//#include<list>
#include<queue>
#include<deque>
#include<algorithm>
//#include<numeric>
#include<utility>
#include<complex>
//#include<memory>
#include<functional>
#include<cassert>
#include<set>
#include<stack>

const int dx[] = {1, 0, -1, 0};
const int dy[] = {0, 1, 0, -1};
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef pair<int, int> pii;

int ans[] = {-1, -1, -1, -1};

void readXY(int& x, int& y) {
    cin >> x >> y;
    if (x==4 && y==0) exit(0);
}

bool NG(const vi& ok, int num) {
    for (int el : ok) if (num==el) return true;
    return false;
}

int main() {
    vector<int> ok;
    for (int t = 0; t < 4; t++) {
        int atLeast = 3-ok.size();
        vector<int> tmp(10);
        int maxi = 0;
        for (int num = atLeast; num < 10; num++) {
            if (NG(ok, num)) continue;
            // 確定してるやつ
            for (int el : ok) {
                cout << el << " ";
            }
            for (int i = 0; i < atLeast; i++) cout << i << " ";
            cout << num << endl;
            int x, y;
            readXY(x, y);
            tmp[num] = x+y; maxi = max(maxi, x+y);
        }
        for (int num = 9; num >= atLeast; num--) {
            if (tmp[num] == maxi) {
                ok.push_back(num);
                break;
            }
        }
    }
    sort(ok.begin(), ok.end());
    do {
        for (int i = 0; i < 4; i++) {
            cout << ok[i];
            if (i < 3) cout << " ";
        }
        cout << endl;
        int x, y;
        readXY(x, y);
    } while (next_permutation(ok.begin(), ok.end()));
    return 0;
}
0