1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
| #include <array> #include <iostream> #include <vector> using namespace std; const int N = 1e5 + 10; const int INF = 0x3f3f3f3f; namespace SegmentBeats { #define ls(x) (x * 2) #define rs(x) (x * 2 + 1) struct Node { int max, sem; pair<int, int> tag; int l, r; }; array<Node, N * 4> tr; auto merge(const Node &A, const Node &B) { pair<int, int> res; if (B.max > A.max) { res.first = B.max; res.second = max(A.max, B.sem); } else if (B.max < A.max) { res.first = A.max; res.second = max(A.sem, B.max); } else { res.first = A.max; res.second = max(A.sem, B.sem); } return res; }
void apply_tag(Node &A, const Node &B) { if (A.max >= B.tag.second) { A.max = B.tag.first; if (!A.tag.second) { A.tag.second = B.tag.second; } else { A.tag.second = min(A.tag.second, B.tag.second); } A.tag.first = B.tag.first; } } void apply_tag(Node &A, const pair<int, int> &B) { if (A.max >= B.second) { A.max = B.first; if (!A.tag.second) { A.tag.second = B.second; } else { A.tag.second = min(A.tag.second, B.second); } A.tag.first = B.first; } } void pushup(int x) { auto &&res = merge(tr[ls(x)], tr[rs(x)]); tr[x].max = res.first; tr[x].sem = res.second; } void pushdown(int x) { if (tr[x].tag.first) { apply_tag(tr[ls(x)], tr[x]); apply_tag(tr[rs(x)], tr[x]); tr[x].tag = make_pair(0, 0); } } void build(int rt, int l, int r) { tr[rt].l = l; tr[rt].r = r; if (l == r) { tr[rt].max = l; tr[rt].sem = -INF; return; } int mid = (l + r) / 2; build(ls(rt), l, mid); build(rs(rt), mid + 1, r); pushup(rt); } void update(int rt, int L, int R, int x, int y) { auto &l = tr[rt].l; auto &r = tr[rt].r; if (tr[rt].max < y) { return; } if (l >= L && r <= R && tr[rt].sem < y) { apply_tag(tr[rt], make_pair(x, y)); return; } pushdown(rt); int mid = (l + r) / 2; if (L <= mid) { update(ls(rt), L, R, x, y); } if (mid < R) { update(rs(rt), L, R, x, y); } pushup(rt); } int query(int rt, int pos) { auto &l = tr[rt].l; auto &r = tr[rt].r; if (l == r) { return tr[rt].max; } pushdown(rt); int mid = (l + r) / 2; if (pos <= mid) { return query(ls(rt), pos); } else { return query(rs(rt), pos); } } #undef ls #undef rs } int n, m, q; array<int, N> lb, ans; struct Query { int l, id; }; vector<Query> qr[N]; int main() { cin >> n >> m; for (int i = 1; i <= m; i++) { int l, r; cin >> l >> r; lb[r] = l; } cin >> q; for (int i = 1; i <= q; i++) { int l, r; cin >> l >> r; qr[r].emplace_back(Query{l, i}); } SegmentBeats::build(1, 1, n); for (int i = 1; i <= n; i++) { if (lb[i]) { SegmentBeats::update(1, 1, lb[i], i, lb[i]); } for (auto &p : qr[i]) { ans[p.id] = SegmentBeats::query(1, p.l); } } for (int i = 1; i <= q; i++) { cout << ans[i] << endl; } return 0; }
|