# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
712496 |
2023-03-18T21:52:53 Z |
noedit |
Zagrade (COI20_zagrade) |
C++17 |
|
891 ms |
1400 KB |
#include <bits/stdc++.h>
//#include <quadmath.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
//#define sz(x) (int)x.size()
//#define sqr(x) x*x
//#pragma GCC optimize("-O3")
//#pragma GCC optimize("Ofast")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,sse4.1,sse4.2,popcnt,abm,mmx,avx,avx2,tune=native")
#pragma GCC optimize("unroll-loops")
//#pragma GCC optimize("no-stack-protector")
#pragma GCC optimize("fast-math")
using namespace std;
//using namespace __gnu_pbds;
#define int long long
//#define ld long double
//template <class T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
typedef long long ll;
bool ask(int l, int r)
{
cout << "? " << l << " " << r << endl;
int b;
cin >> b;
return b;
}
const int MAXN = 1e5 + 10;
bool check[MAXN];
char ans[MAXN];
int lt[MAXN], rt[MAXN];
void solve()
{
int n, k;
cin >> n >> k;
stack<int> st;
fill(ans, ans + n + 1, '#');
for (int i = 1; i <= n; i++)
{
if (st.empty())
{
st.push(i);
}
else
{
int res = ask(st.top(), i);
if (res)
{
ans[st.top()] = '(';
ans[i] = ')';
st.pop();
}
else
{
st.push(i);
}
}
}
int cnt = 0;
for (int i = 1; i <= n; i++)
{
if (ans[i] == '#')
{
if (cnt < n / 2) ans[i] = ')', cnt++;
else ans[i] = '(';
}
}
cout << "! ";
for (int i = 1; i <= n; i++) cout << ans[i];
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t;
t = 1;
//cin >> t;
while (t--)
{
solve();
}
return 0;
}
/*
4 2 4
3 1 1 10
9 2 2 4
7 2 5 7
4 1 8 10
5 3
5 6
5 9
1 10
*/
/*
2 1 3
1 1 1 4
1 1 2 6
1 3
1 5
1 7
*/
/*
1 1 1
100000000 1 1 1
1 1
*/
/*
4 4
1 2 1 3
1 1
1 2
1 3
1 4
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
208 KB |
Output is correct |
2 |
Correct |
4 ms |
208 KB |
Output is correct |
3 |
Correct |
10 ms |
296 KB |
Output is correct |
4 |
Correct |
8 ms |
208 KB |
Output is correct |
5 |
Correct |
8 ms |
208 KB |
Output is correct |
6 |
Correct |
10 ms |
208 KB |
Output is correct |
7 |
Correct |
10 ms |
208 KB |
Output is correct |
8 |
Correct |
8 ms |
208 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
220 KB |
Output is correct |
2 |
Correct |
8 ms |
336 KB |
Output is correct |
3 |
Incorrect |
8 ms |
208 KB |
Mismatch at position 511. Expected (, found ) |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
208 KB |
Output is correct |
2 |
Correct |
289 ms |
408 KB |
Output is correct |
3 |
Correct |
719 ms |
408 KB |
Output is correct |
4 |
Correct |
571 ms |
408 KB |
Output is correct |
5 |
Correct |
891 ms |
404 KB |
Output is correct |
6 |
Correct |
796 ms |
456 KB |
Output is correct |
7 |
Correct |
681 ms |
820 KB |
Output is correct |
8 |
Correct |
681 ms |
412 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
208 KB |
Output is correct |
2 |
Correct |
733 ms |
1400 KB |
Output is correct |
3 |
Incorrect |
855 ms |
680 KB |
Mismatch at position 49727. Expected (, found ) |
4 |
Halted |
0 ms |
0 KB |
- |