結果
| 問題 |
No.1959 Prefix MinMax
|
| コンテスト | |
| ユーザー |
houren
|
| 提出日時 | 2022-05-27 22:14:53 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 2,000 ms |
| コード長 | 1,064 bytes |
| コンパイル時間 | 1,720 ms |
| コンパイル使用メモリ | 169,644 KB |
| 実行使用メモリ | 25,452 KB |
| 平均クエリ数 | 26.72 |
| 最終ジャッジ日時 | 2024-09-20 17:13:57 |
| 合計ジャッジ時間 | 4,392 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 31 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
#define fix(x) fixed << setprecision(x)
#define asc(x) x, vector<x>, greater<x>
#define rep(i, n) for(ll i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
int t;
cin >> t;
rep(houren,t){
int n, x = 1, pre, res;
cin >> n;
vector<int> ans(n);
rep(i,2){
cout << "? ";
rep(j,n-1) cout << ((j^i)&1) << " ";
cout << '\n' << flush;
rep(i,n){
cin >> res;
if(!i) ans[i] = res;
else{
if(pre!=res) ans[i] = res;
}
pre = res;
}
}
cout << "! ";
rep(i,n) cout << ans[i] << " ";
cout << '\n' << flush;
}
return 0;
}
houren