# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
988338 | fanwen | Zagrade (COI20_zagrade) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
// #include <ext/pb_ds/assoc_container.hpp>
// #include <ext/pb_ds/tree_policy.hpp>
using namespace std;
// using namespace __gnu_pbds;
#define fi first
#define se second
#define REP(i, n) for (auto i = 0; i < (n); ++i)
#define FOR(i, a, b) for (auto i = (a); i <= (b); ++i)
#define FORD(i, a, b) for (auto i = (a); i >= (b); --i)
#define FORE(i, a, b) for (auto i = (a); i < (b); ++i)
#define MASK(x) (1LL << (x))
#define BIT(x, i) (((x) >> (i)) & 1)
#define ALL(x) (x).begin(), (x).end()
#define left ___left
#define right ___right
#define __builtin_popcount __builtin_popcountll
const int MAX = 1e5 + 5;
int n, q, a[MAX];
int ask (int l, int r) {
cout << "? " << l << " " << r << endl;
int x; cin >> x; return x;
}
void you_make_it(void) {
cin >> n >> q;
deque <int> dq;
fill(a + 1, a + n + 1);
for (int i = 1; i <= n; ++i) {
if(i > 1 and !dq.emtpy()) {
if(ask(dq.back(), i)) {
a[dq.back()] = 0;
a[i] = 1;
dq.pop_back();
} else {
dq.push_back(i);
}
} else {
dq.push_back(i);
}
}
for (int i = 0; i < dq.size() / 2; ++i) {
a[i] = 1;
a[dq[dq.size() - i - 1]] = 0;
}
cout << "! ";
for (int i = 1; i <= n; ++i) {
assert(a[i] != -1);
cout << (a[i] ? "(" : ")");
}
}
signed main() {
#ifdef LOCAL
freopen("TASK.inp", "r", stdin);
freopen("TASK.out", "w", stdout);
#endif // LOCAL
auto start_time = chrono::high_resolution_clock::now();
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int test = 1;
// cin >> test;
for (int i = 0; i < test; ++i) {
you_make_it();
// cout << '\n';
}
auto end_time = chrono::high_resolution_clock::now();
cerr << "\nExecution time : " << chrono::duration_cast <chrono::milliseconds> (end_time - start_time).count() << "[ms]" << endl;
return (0 ^ 0);
}
// Dream it. Wish it. Do it.