# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
399837 | my99n | New Home (APIO18_new_home) | C++17 | 2254 ms | 10208 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;
struct event {
int et, x, t, y, i;
bool operator < (const event & o) const {
if (y == o.y) return et < o.et; // open query close
return y < o.y;
}
};
vector<event> e;
set<pair<int,int>> s[500];
int ans[100100];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, k, q; cin >> n >> k >> q;
assert(k < 500);
for (int i = 1; i <= n; i++) {
int x, t, a, b; cin >> x >> t >> a >> b;
e.push_back({1, x, t, a, i});
e.push_back({3, x, t, b, i});
}
for (int i = 1; i <= q; i++) {
int l, y; cin >> l >> y;
e.push_back({2, l, 0, y, i});
}
sort(e.begin(), e.end());
for (auto [et, x, t, y, i] : e) {
# | 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... |