結果

問題 No.355 数当てゲーム(2)
ユーザー is_eri23is_eri23
提出日時 2016-04-05 23:07:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 3,240 bytes
コンパイル時間 1,510 ms
コンパイル使用メモリ 158,232 KB
実行使用メモリ 24,408 KB
平均クエリ数 40.58
最終ジャッジ日時 2023-09-23 23:43:40
合計ジャッジ時間 5,835 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
24,060 KB
testcase_01 AC 27 ms
23,856 KB
testcase_02 AC 26 ms
23,436 KB
testcase_03 AC 27 ms
23,640 KB
testcase_04 AC 26 ms
24,036 KB
testcase_05 AC 27 ms
23,844 KB
testcase_06 AC 27 ms
23,652 KB
testcase_07 AC 26 ms
24,036 KB
testcase_08 AC 27 ms
23,460 KB
testcase_09 AC 27 ms
23,640 KB
testcase_10 AC 26 ms
24,072 KB
testcase_11 AC 27 ms
23,688 KB
testcase_12 AC 27 ms
23,592 KB
testcase_13 AC 28 ms
23,640 KB
testcase_14 AC 27 ms
24,024 KB
testcase_15 AC 27 ms
23,760 KB
testcase_16 AC 27 ms
23,712 KB
testcase_17 AC 27 ms
23,664 KB
testcase_18 AC 26 ms
23,592 KB
testcase_19 AC 27 ms
23,856 KB
testcase_20 AC 26 ms
24,288 KB
testcase_21 AC 28 ms
23,652 KB
testcase_22 AC 27 ms
24,024 KB
testcase_23 AC 27 ms
23,652 KB
testcase_24 AC 27 ms
23,436 KB
testcase_25 AC 27 ms
23,436 KB
testcase_26 AC 27 ms
23,592 KB
testcase_27 AC 28 ms
24,036 KB
testcase_28 AC 27 ms
24,348 KB
testcase_29 AC 27 ms
23,400 KB
testcase_30 AC 27 ms
23,436 KB
testcase_31 AC 27 ms
23,856 KB
testcase_32 AC 27 ms
23,964 KB
testcase_33 AC 27 ms
23,400 KB
testcase_34 AC 27 ms
24,276 KB
testcase_35 AC 27 ms
23,676 KB
testcase_36 AC 28 ms
23,580 KB
testcase_37 AC 27 ms
23,544 KB
testcase_38 AC 27 ms
24,072 KB
testcase_39 AC 27 ms
24,276 KB
testcase_40 AC 28 ms
23,580 KB
testcase_41 AC 28 ms
24,336 KB
testcase_42 AC 27 ms
23,448 KB
testcase_43 AC 28 ms
24,312 KB
testcase_44 AC 27 ms
24,024 KB
testcase_45 AC 27 ms
23,652 KB
testcase_46 AC 28 ms
24,408 KB
testcase_47 AC 27 ms
23,436 KB
testcase_48 AC 27 ms
23,388 KB
testcase_49 AC 27 ms
24,084 KB
testcase_50 AC 28 ms
23,412 KB
testcase_51 AC 27 ms
24,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define EPS 1e-9
#define INF 1070000000LL
#define MOD 1000000007LL
#define fir first
#define foreach(it,X) for(auto it=(X).begin();it!=(X).end();it++)
#define numa(x,a) for(auto x: a)
#define ite iterator
#define mp make_pair
#define rep(i,n) rep2(i,0,n)
#define rep2(i,m,n) for(int i=m;i<(n);i++)
#define pb push_back
#define pf push_front
#define sec second
#define sz(x) ((int)(x).size())
#define ALL( c ) (c).begin(), (c).end()
#define gcd(a,b) __gcd(a,b)
#define mem(x,n) memset(x,n,sizeof(x))
#define endl "\n"
using namespace std;
template <int POS, class TUPLE> void deploy(std::ostream &os, const TUPLE &tuple){}
template <int POS, class TUPLE, class H, class ...Ts> void deploy(std::ostream &os, const TUPLE &t){ os << (POS == 0 ? "" : ", ") << get<POS>(t); deploy<POS + 1, TUPLE, Ts...>(os, t); }
template <class T,class U> std::ostream& operator<<(std::ostream &os, std::pair<T,U> &p){ os << "(" << p.first <<", " << p.second <<")";return os; }
template <class T> std::ostream& operator<<(std::ostream &os, std::vector<T> &v){ int remain = v.size(); os << "{"; for(auto e: v) os << e << (--remain == 0 ? "}" : ", "); return os; }
template <class T> std::ostream& operator<<(std::ostream &os, std::set<T> &v){ int remain = v.size(); os << "{"; for(auto e: v) os << e << (--remain == 0 ? "}" : ", "); return os; }
template <class T, class K> std::ostream& operator<<(std::ostream &os, std::map<T, K> &mp){ int remain = mp.size(); os << "{"; for(auto e: mp) os << "(" << e.first << " -> " << e.second << ")" << (--remain == 0 ? "}" : ", "); return os; }
#define DEBUG1(var0) { std::cerr << (#var0) << "=" << (var0) << endl; }
#define DEBUG2(var0, var1) { std::cerr << (#var0) << "=" << (var0) << ", ";DEBUG1(var1); }
#define DEBUG3(var0, var1, var2) { std::cerr << (#var0) << "=" << (var0) << ", ";DEBUG2(var1,var2); }
#define DEBUG4(var0, var1, var2, var3) { std::cerr << (#var0) << "=" << (var0) << ", ";DEBUG3(var1,var2,var3); }
using ll = long long;

int solve(int x){

  vector <int> cands = {0,1,2,3,4,5,6,7,8,9};
  vector <int> others1 = {7,8,9};
  vector <int> others2 = {1,2,3};
  map <int, vector <int> > in1,in2;
  rep(i,sz(cands)){
    vector <int> out(4);
    vector <int> &others = others1;
    if (cands[i] >= 7) {
      others = others2;
    }
    int cnt = 0;
    rep(j,4){
      if (j == x){
        out[j] = cands[i];
      }else{
        out[j] = others[cnt++];
      }
    }
    rep(j,4){
      if (j) cout << ' ';
      cout << out[j];
    }
    cout << endl;
    cout << std::flush;
    int a,b;
    cin >> a >> b;
    if (a == 4) {
      return -1;
    }
    if (cands[i] >= 7) {
      in2[a].pb(i);
    }else{
      in1[a].pb(i);
    }
  }
  //DEBUG2(in1,in2);
  //assert(sz(in1) > 1 || sz(in2) > 1);
  //assert(sz(in1) <= 1 || sz(in2) <= 1);
  auto &in = in1;
  if (sz(in2) > 1) {
    in = in2;
  }
  auto it = in.rbegin();
  auto is = it->sec;
  //DEBUG1(is);
  //assert(sz(is) == 1);
  return is.front();
}

int main()
{
  cin.tie(0);
  ios_base::sync_with_stdio(0);
  int ans[4];
  rep(i,4){
    ans[i] = solve(i);
    if (ans[i] == -1) {
      return 0;
    }
  }
  rep(i,4){
    if (i) cout << ' ';
    cout << ans[i];
  }
  cout << endl;
  cout << std::flush;
  return 0;
}
0