#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;
const ll mod=1e9+7;
const ll maxn=1e5+5;
const int INF=1e9+5;
#define ok ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define fi first
#define se second
#define pb push_back
#define ub upper_bound
#define lb lower_bound
#define endl '\n'
int n, q, bk, ttp, jwb, rem;
stack<int> st;
char ans[maxn];
int main() {
ok
cin >> n >> q;
if(q==n*n/4) {
for(int i=1; i<=n; i++) ans[i]='-';
for(int i=1; i<n; i++) {
for(int j=i+1; j<=n; j+=2) {
cout << "? " << i << " " << j << endl;
cout.flush();
cin >> jwb;
if(jwb==1) {
ans[i]='(';
ans[j]=')';
}
}
}
for(int i=1; i<=n; i++) {
if(ans[i]=='-') {
rem++;
}
}
rem/=2;
for(int i=1; i<=n; i++) {
if(rem && ans[i]=='-') {
ans[i]=')';
rem--;
} else if(ans[i]=='-') ans[i]='(';
}
cout << "! ";
for(int i=1; i<=n; i++) cout << ans[i];
cout << endl;
return 0;
}
for(int i=1; i<=n; i++) {
if(st.empty()) {
ans[i]='(';
st.push(i);
continue;
}
cout << "? " << st.top() << " " << i << endl;
cout.flush();
cin >> jwb;
if(jwb==1) {
ans[i]=')';
st.pop();
} else {
ans[i]='(';
st.push(i);
}
}
cout << "! ";
for(int i=1; i<=n; i++) {
cout << ans[i];
}
cout << endl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
208 KB |
Output is correct |
2 |
Runtime error |
1290 ms |
304 KB |
Execution killed with signal 13 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
208 KB |
Output is correct |
2 |
Runtime error |
1652 ms |
304 KB |
Execution killed with signal 13 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
208 KB |
Output is correct |
2 |
Correct |
415 ms |
492 KB |
Output is correct |
3 |
Correct |
786 ms |
736 KB |
Output is correct |
4 |
Correct |
613 ms |
496 KB |
Output is correct |
5 |
Correct |
747 ms |
496 KB |
Output is correct |
6 |
Correct |
660 ms |
488 KB |
Output is correct |
7 |
Correct |
778 ms |
704 KB |
Output is correct |
8 |
Correct |
447 ms |
456 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Mismatch at position 1. Expected ), found ( |
2 |
Halted |
0 ms |
0 KB |
- |