# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
234447 | ne4eHbKa | Deda (COCI17_deda) | C++17 | 1093 ms | 14072 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>
using namespace std;
typedef long long ll;
template<typename t> inline void umin(t &a, t b) {a = min(a, b);}
template<typename t> inline void umax(t &a, t b) {a = max(a, b);}
#define re return
mt19937 rnd(chrono::system_clock().now().time_since_epoch().count());
int rint(int v) {re rnd() % v;}
int n;
#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math,O3")
struct tree {
tree *l, *r;
int v;
tree(int tl = 1, int tr = n): l(r = 0), v(+2e9) {
if(tl < tr) {
int tm = (tl + tr) >> 1;
l = new tree(tl, tm);
r = new tree(tm + 1, tr);
}
}
void upd(int p, int x, int tl = 1, int tr = n) {
umin(v, x);
if(tl < tr) {
int tm = (tl + tr) >> 1;
p <= tm
? l->upd(p, x, tl, tm)
: r->upd(p, x, tm + 1, tr);
}
}
int req(int ql, int qr, int tl = 1, int tr = n) {
if(ql > qr) re +2e9;
if(ql == tl && qr == tr) re v;
int tm = (tl + tr) >> 1;
re min(l->req(ql, min(tm, qr), tl, tm),
r->req(max(tm + 1, ql), qr, tm + 1, tr));
}
};
int main() {
ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
int q; cin >> n >> q;
tree t {};
while(q--) {
char tp; cin >> tp;
if(tp == 'M') {
int a, x; cin >> x >> a;
t.upd(a, x);
} else {
int y, b; cin >> y >> b;
if(t.req(b, n) > y) {
cout << "-1\n";
continue;
}
int l = b, r = n;
while(l < r) {
int m = (l + r) >> 1;
t.req(l, m) <= y
? r = m
: l = m + 1;
}
cout << l << '\n';
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |