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 <iostream>
#include <set>
using namespace std;
typedef long long ll;
struct node{
set <int> s;
};
int a, b, n, di;
node t[2][(1 << 18) + 5];
ll res;
const ll inf = (ll) 1e18;
void update(int root, int l, int r, int s, int e, int val){
if(l > r || l > e || r < s)
return;
if(l >= s && r <= e){
t[di][root].s.insert(val);
return;
}
int mid = (l + r) / 2;
update(root * 2, l, mid, s, e, val);
update(root * 2 + 1, mid + 1, r, s, e, val);
}
void query(int root, int l, int r, int idx, int val, bool type){
if(l > r || l > idx || r < idx)
return;
if(type){
set <int>::iterator it = t[di][root].s.upper_bound(val);
if(!t[di][root].s.empty() && it != t[di][root].s.end()){
res = min(res, (ll)*it);
}
}
else{
set <int>::iterator it = t[di][root].s.upper_bound(val);
if(!t[di][root].s.empty() && it != t[di][root].s.begin()){
res = max(res, (ll)*(--it));
}
}
if(l == r)
return;
int mid = (l + r) / 2;
if(idx <= mid){
query(root * 2, l, mid, idx, val, type);
return;
}
query(root * 2 + 1, mid + 1, r, idx, val, type);
}
int kolko(int l, int r, int x, int y, bool type){
if(type){
res = inf;
}
else{
res = 0;
}
query(1, l, r, x, y, type);
return res;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> a >> b;
update(1, 1, a, 1, a, 0);
update(1, 1, a, 1, a, b);
di = 1;
update(1, 1, b, 1, b, 0);
update(1, 1, b, 1, b, a);
//cout << 1 << endl;
cin >> n;
for(int i = 0 ; i < n ; ++i){
int x, y, type;
cin >> x >> y >> type;
if(type == 1){
di = 1;
int l = kolko(1, b, y, x, 0);
int r = kolko(1, b, y, x, 1);
di = 0;
int dolje = kolko(1, a, x, y, 0);
int gore = kolko(1, a, x, y, 1);
ll p1 = (ll)(gore - y) * (ll)(r - l);
ll p2 = (ll)(y - dolje) * (ll)(r - l);
if(p1 > p2){
swap(p1, p2);
}
cout << p1 << ' ' << p2 << endl;
update(1, 1, a, l, r, y);
}
else{
di = 0;
int dolje = kolko(1, a, x, y, 0);
int gore = kolko(1, a, x, y, 1);
di = 1;
int l = kolko(1, b, y, x, 0);
int r = kolko(1, b, y, x, 1);
ll p1 = (ll)(r - x) * (ll)(gore - dolje);
ll p2 = (ll)(x - l) * (ll)(gore - dolje);
if(p1 > p2){
swap(p1, p2);
}
cout << p1 << ' ' << p2 << endl;
update(1, 1, b, dolje, gore, x);
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |