結果

問題 No.1959 Prefix MinMax
ユーザー 👑 tute7627tute7627
提出日時 2022-05-02 17:00:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,121 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 204,716 KB
実行使用メモリ 35,612 KB
最終ジャッジ日時 2023-09-30 09:53:43
合計ジャッジ時間 8,537 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

vector<int>ask(vector<int>A){
  cout << "?";
  for(int i = 0; i < A.size(); i++){
    cout << " " << A[i];
  }
  cout << endl;
  vector<int>B(A.size() + 1);
  for(int i = 0; i < A.size() + 1; i++){
    cin >> B[i];
  }
  return B;
}

struct RandomNumberGenerator {
  mt19937_64 mt;

  RandomNumberGenerator() : mt(chrono::steady_clock::now().time_since_epoch().count()) {}

  int operator()(int a, int b) { // [a, b)
    uniform_int_distribution< int > dist(a, b - 1);
    return dist(mt);
  }

  int operator()(int b) { // [0, b)
    return (*this)(0, b);
  }
};
RandomNumberGenerator rng;

int main(){
  int N;
  cin >> N;
  vector<int>P(N, -1);
  int num = 10;
  while(*min_element(P.begin(), P.end()) == -1){
    num--;
    if(num<0)break;
    vector<int>A(N - 1);
    for(int i = 0; i < N - 1; i++){
      A[i] = rng(0, 2);
    }
    auto B = ask(A);
    P[0] = B[0];
    for(int i = 1; i < N; i++){
      if(B[i] != B[i - 1]){
        P[i] = B[i];
      }
    }
  }
  cout << "!";
  for(int i = 0; i < N; i++){
    cout << " " << P[i];
  }
  cout << endl;
  return 0;
}
0