#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define fi first
#define se second
#define all(m) (m).begin(), (m).end()
#define rall(m) (m).rbegin(), (m).rend()
#define vec vector
#define sz(a) (int) (a).size()
#define mpp make_pair
#define mtt make_tuple
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
typedef pair <int, int> pii;
typedef tuple <int, int, int> tui;
template <typename T> bool umin(T &a, T b) { return a > b ? a = b, 1 : 0; }
template <typename T> bool umax(T &a, T b) { return a < b ? a = b, 1 : 0; }
const int N = 2e5 + 42, L = 18;
const int inf = 1e9 + 42;
int solve(){
int r, c, n;
cin >> r >> c >> n;
vec <pii> a(n);
map <pii, int> id;
map <int, vec <int>> v;
vec <int> xs(n);
for (int i = 0; i < n; ++i){
auto &[x, y] = a[i];
cin >> x >> y;
id[{x, y}] = i;
v[x].push_back(y);
xs[i] = x;
}
for (auto &[x, c]: v) sort(all(c));
auto nxt = [&](int x, int y){
if (v[x].empty()) return -1;
auto it = lower_bound(all(v[x]), y);
return it == v[x].end() ? -1 : id[mpp(x, *it)];
};
vec <vec <int>> g(n);
for (int i = 0; i < n; ++i){
auto [x, y] = a[i];
if (~nxt(x, y + 1)){
g[i].push_back(nxt(x, y + 1));
}
if (~nxt(x + 1, y)){
g[i].push_back(nxt(x + 1, y));
}
}
vec <vec <int>> go(n, vec <int> (L, -1));
auto mrg = [&](int i, int j){
if (!~i || !~j){
return ~i ? i : j;
}
return a[i].se < a[j].se ? i : j;
};
sort(rall(xs));
for (auto &x: xs){
for (int pt = sz(v[x]) - 1; ~pt; --pt){
int y = v[x][pt];
int u = id[{x, y}];
for (auto &v: g[u]){
auto [nx, ny] = a[v];
if (x == nx){
for (int l = 0; l < L; ++l){
go[u][l] = go[v][l];
}
}
else{
go[u][0] = mrg(go[u][0], v);
int cv = go[v][0];
for (int l = 1; l < L; ++l){
if (!~cv) break;
go[u][l] = cv;
cv = go[cv][l];
}
}
}
}
}
int q; cin >> q;
while(q--){
int sx, sy, tx, ty;
cin >> sx >> sy >> tx >> ty;
if (tx < sx || ty < sy){
cout << "No\n";
continue;
}
if (sx == tx){
cout << "Yes\n";
continue;
}
int i = nxt(sx, sy);
int dst = tx - sx - 1;
for (int l = 0; l < L; ++l){
if (!~i) break;
if (dst >> l & 1){
i = go[i][l];
}
}
cout << (!~i || a[i].se > ty? "No\n" : "Yes\n");
}
return 0;
}
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int tst = 1; //cin >> tst;
while(tst--) solve();
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
56 ms |
2488 KB |
200 token(s): yes count is 21, no count is 179 |
2 |
Correct |
91 ms |
2780 KB |
200 token(s): yes count is 70, no count is 130 |
3 |
Correct |
41 ms |
2020 KB |
197 token(s): yes count is 25, no count is 172 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2063 ms |
49856 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2071 ms |
51284 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
109 ms |
1492 KB |
5000 token(s): yes count is 3238, no count is 1762 |
2 |
Correct |
49 ms |
1508 KB |
5000 token(s): yes count is 3837, no count is 1163 |
3 |
Correct |
12 ms |
2256 KB |
5000 token(s): yes count is 4104, no count is 896 |
4 |
Correct |
789 ms |
1492 KB |
5000 token(s): yes count is 3934, no count is 1066 |
5 |
Correct |
21 ms |
1620 KB |
5000 token(s): yes count is 3384, no count is 1616 |
6 |
Correct |
1331 ms |
1492 KB |
5000 token(s): yes count is 3390, no count is 1610 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1643 ms |
67896 KB |
200000 token(s): yes count is 171404, no count is 28596 |
2 |
Correct |
1735 ms |
61928 KB |
200000 token(s): yes count is 161254, no count is 38746 |
3 |
Execution timed out |
2076 ms |
51464 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |