| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1003831 | vjudge1 | Zagrade (COI20_zagrade) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
#define mp make_pair
#define fr first
#define sc second
#define all(x) x.begin(),x.end()
const int maxn = 5e5+10;
const int inf = 1e18+10;
int query(int l, int r) {
if(l > r) return 0;
if(l < 0 or r >= n) return 0;
cout << "? " << l+1 << " " << r+1 << endl;
cout.flush();
int x; cin >> x;
return x;
}
int32_t main() {
// #ifndef ONLINE_JUDGE
// freopen("in.in","r",stdin);
// freopen("out.out","w",stdout);
// #endif
int n, q;
cin >> n >> q;
vector<int> ans(n,0);
int antok = -inf;
int pos = 0;
int qtd = n/2;
while(pos+1 < n) {
int l = pos+1;
int r = pos;
while(query(l-1,r+1)) {
l--;
r++;
ans[l] = +1;
ans[r] = -1;
qtd--;
}
pos = r+1;
}
for(int i = 0; i < n; i++) {
if(ans[i] == 0) {
if(qtd == 0) {
ans[i] = +1;
}
else {
qtd--;
ans[i] = -1;
}
}
}
cout << "! ";
for(int i = 0; i < n; i++) {
if(ans[i] == -1) cout << ')';
else cout << '(';
}
cout.flush();
}
