# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
872007 |
2023-11-12T06:18:55 Z |
vjudge1 |
Deda (COCI17_deda) |
C++17 |
|
1000 ms |
28164 KB |
#include <bits/stdc++.h>
using namespace std;
#pragma GCC optimze("Ofast")
typedef long long ll;
typedef pair<int, int> pii;
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define len(x) (int) x.size()
#define pb push_back
mt19937 rnd(time(0));
struct query {
char type;
int a, b;
};
const int N = 2e5 + 7, SQ = 460, BLOCK = N / SQ + 7;
map<int, int> mp;
set<int> box[BLOCK], c[N];
vector<query> qu;
vector<int> vec;
int n, q;
void read_input() {
cin >> n >> q;
for (int i = 0; i < q; i++) {
query t;
cin >> t.type >> t.a >> t.b;
vec.pb(t.a);
qu.pb(t);
}
}
void prepare() {
sort(all(vec));
vec.resize(unique(all(vec)) - vec.begin());
for (int i = 0; i < len(vec); i++)
mp[vec[i]] = i;
}
void solve() {
for (int i = 0; i < q; i++) {
char type = qu[i].type;
int a = qu[i].a, b = qu[i].b;
a = mp[a];
if (type == 'M') {
box[a / SQ].insert(b);
c[a].insert(b);
}
else {
int l = 0, r = a + 1, ans = INT_MAX;
for (; l < r; ) {
if (l % SQ || l + SQ > r) {
if (c[l].empty() || *(--c[l].end()) < b)
l++;
else {
ans = min(ans, *c[l].lower_bound(b));
l++;
}
}
else {
if (box[l / SQ].empty() || *(--box[l / SQ].end()) < b)
l += SQ;
else {
ans = min(ans, *box[l / SQ].lower_bound(b));
l += SQ;
}
}
}
cout << (ans == INT_MAX? -1: ans) << '\n';
}
}
}
int32_t main() {
ios:: sync_with_stdio(0), cin.tie(0), cout.tie(0);
read_input(), prepare(), solve();
return 0;
}
Compilation message
deda.cpp:4: warning: ignoring '#pragma GCC optimze' [-Wunknown-pragmas]
4 | #pragma GCC optimze("Ofast")
|
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
9820 KB |
Output is correct |
2 |
Correct |
2 ms |
9820 KB |
Output is correct |
3 |
Correct |
6 ms |
10076 KB |
Output is correct |
4 |
Correct |
334 ms |
21416 KB |
Output is correct |
5 |
Execution timed out |
1045 ms |
28164 KB |
Time limit exceeded |
6 |
Execution timed out |
1026 ms |
26636 KB |
Time limit exceeded |
7 |
Execution timed out |
1045 ms |
25720 KB |
Time limit exceeded |