53672023-04-26 16:17:03zsomborHegyi levegőcpp17Időlimit túllépés 90/1003.108s523192 KiB
#include <bits/stdc++.h>
using namespace std;

int n, m, q, x, y;
vector <vector <int>> h;
vector <pair<int, pair<int, int>>> srt;
vector <int> p(5e5, 0);
vector <int> sz(5e5, 1);
vector <int> ind(5e5, 0);
vector <set <int>> qi(5e5);
vector <int> ans(5e5, 0);

int holvan(int a) {
    return (a == p[a] ? a : p[a] = holvan(p[a]));
}

void unio(int a, int b) {
    a = holvan(a);
    b = holvan(b);
    if (a == b) return;
    if (sz[a] < sz[b]) swap(a, b);
    p[b] = a;
    sz[a] += sz[b];

    int A = ind[a], B = ind[b];
    if (qi[A].size() < qi[B].size()) swap(A, B);
    for (int i : qi[B]) {
        if (qi[A].count(i)) { ans[i] = h[x][y]; qi[A].erase(i); }
        else qi[A].insert(i);
    }
    ind[a] = A;
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cin >> n >> m >> q;
    h.resize(n);
    for (int i = 0; i < n; i++) {
        h[i].resize(m);
        for (int j = 0; j < m; j++) {
            cin >> h[i][j];
            srt.push_back({ h[i][j],{i,j} });
            p[i * m + j] = ind[i * m + j] = i * m + j;
        }
    }
    sort(srt.begin(), srt.end());
    for (int i = 0; i < q; i++) {
        cin >> x >> y; x--; y--;
        qi[x * m + y].insert(i);
        cin >> x >> y; x--; y--;
        qi[x * m + y].insert(i);
    }
    for (int i = 0; i < n * m; i++) {
        x = srt[i].second.first;
        y = srt[i].second.second;
        if (x && h[x][y] >= h[x - 1][y]) unio(x * m + y, (x - 1) * m + y);
        if (x < n - 1 && h[x][y] >= h[x + 1][y]) unio(x * m + y, (x + 1) * m + y);
        if (y && h[x][y] >= h[x][y - 1]) unio(x * m + y, x * m + y - 1);
        if (y < m - 1 && h[x][y] >= h[x][y + 1]) unio(x * m + y, x * m + y + 1);
    }
    for (int i = 0; i < q; i++) cout << ans[i] << "\n";
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
subtask10/0
1Elfogadva25ms64372 KiB
2Elfogadva30ms64560 KiB
subtask219/19
3Elfogadva29ms65648 KiB
4Elfogadva28ms65732 KiB
5Elfogadva35ms65908 KiB
6Elfogadva35ms66120 KiB
7Elfogadva29ms66448 KiB
8Elfogadva28ms66556 KiB
9Elfogadva35ms66748 KiB
10Elfogadva30ms67480 KiB
subtask320/20
11Elfogadva25ms66252 KiB
12Elfogadva32ms67092 KiB
13Elfogadva57ms75152 KiB
14Elfogadva583ms175232 KiB
15Elfogadva1.33s314616 KiB
subtask420/20
16Elfogadva1.166s207812 KiB
17Elfogadva1.258s258972 KiB
18Elfogadva1.621s251316 KiB
19Elfogadva1.121s203628 KiB
20Elfogadva1.289s192108 KiB
subtask531/31
21Elfogadva1.093s293820 KiB
22Elfogadva1.106s215216 KiB
23Elfogadva855ms177696 KiB
24Elfogadva996ms177720 KiB
25Elfogadva1.294s283832 KiB
26Elfogadva1.149s225104 KiB
27Elfogadva1.297s351208 KiB
28Elfogadva1.2s370132 KiB
29Elfogadva1.449s351704 KiB
subtask60/10
30Időlimit túllépés3.084s366912 KiB
31Időlimit túllépés3.086s250564 KiB
32Időlimit túllépés3.065s194196 KiB
33Időlimit túllépés3.062s178412 KiB
34Időlimit túllépés3.084s341604 KiB
35Időlimit túllépés3.073s302636 KiB
36Elfogadva2.816s523192 KiB
37Időlimit túllépés3.081s370548 KiB
38Időlimit túllépés3.108s404632 KiB
39Időlimit túllépés3.104s441712 KiB