# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
920289 |
2024-02-02T12:04:34 Z |
ErJ |
Zagrade (COI20_zagrade) |
C++17 |
|
467 ms |
1488 KB |
#include <iostream>
#include <vector>
#include <unordered_map>
#include <cmath>
#include <algorithm>
#include <queue>
#include <map>
#include <set>
//#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define vi vector<ll>
#define vvi vector<vector<ll>>
#define vs vector<string>
#define vc vector<char>
#define vb vector<bool>
#define vp vector<pair<ll, ll>>
#define pp pair<ll, ll>
#define qi queue<ll>
#define qp queue<pp>
#define pqi priority_queue<ll>
#define pqp priority_queue<pp>
#define mi map<ll, ll>
#define mpi map<pp, ll>
#define mip map<ll, pp>
#define mpp map<pp, pp>
#define mb map<ll, bool>
#define si set<ll>
#define sp set<pp>
#define mod 1000000007
#define rep(a, b) for(int a = 0; a < (b); a++)
#define inf 1000000000000000000
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int n, q;
cin >> n >> q;
vector<int> pos(n);
vector<int> left(n);
rep(i, n) {
left[i] = i - 1;
pos[i] = 0;
}
int x = 0;
for (int i = 1; i < n; i++) {
cout << "? " << left[i] + 1 << " " << i + 1 << endl;
cout.flush();
int ans;
cin >> ans;
if (ans == 1) {
x++;
pos[left[i]] = 1;
pos[i] = -1;
if (i < n - 1) {
left[i + 1] = left[left[i]];
}
}
}
x *= 2;
int y = (n - x) / 2;
int akt = 0;
string s = "";
for (int i = 0; i < n; i++) {
if (pos[i] == 0) {
if (akt < y) {
pos[i] = -1;
}
else {
pos[i] = 1;
}
akt++;
}
if (pos[i] == 1) {
s += "(";
}
else {
s += ")";
}
}
cout << "! " << s << endl;
cout.flush();
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Runtime error |
0 ms |
460 KB |
Execution killed with signal 13 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
4 ms |
600 KB |
Output is correct |
3 |
Runtime error |
0 ms |
460 KB |
Execution killed with signal 13 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Runtime error |
1 ms |
1244 KB |
Execution killed with signal 13 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
467 ms |
1488 KB |
Output is correct |
3 |
Runtime error |
1 ms |
1248 KB |
Execution killed with signal 13 |
4 |
Halted |
0 ms |
0 KB |
- |