# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
706254 | vjudge1 | Zagrade (COI20_zagrade) | C++17 | 859 ms | 1156 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 <array>
#define all(v) (v.begin()), (v.end())
#define setall(a, val) for(auto& x : a) x = val
#define ll long long
clock_t start_time;
double get_time() { return (double)(clock() - start_time) / CLOCKS_PER_SEC; }
void init() {
#ifndef ONLINE_JUDGE:
FILE* _ = freopen("in.txt", "r", stdin);
start_time = clock();
#endif
}
const ll MOD = 1e9 + 7;
const ll N = 5e3 + 7;
const ll M = 1e2 + 7;
using namespace std;
//####################################################################################
int main() {
//ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); srand(time(0)); init();
int n, q;
cin >> n >> q;
string s;
stack<pair<char, int>> st;
for (int i = 0; i < n; i++) {
if (st.size()) {
cout << "? " << st.top().second + 1 << ' ' << i + 1 << endl;
int b;
cin >> b;
if (b == 1) {
s += ')';
st.pop();
}
else {
s += '(';
st.push({ '(', i });
}
}
else {
s += '(';
st.push({ '(', i });
}
}
cout << "! " << s << endl;
cerr << get_time() << "s" << endl;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |