50842023-04-15 21:17:04gortomiHegyi levegőcpp17Time limit exceeded 70/1003.091s241780 KiB
#include <bits/stdc++.h>
using namespace std;
vector<vector<pair<int, int> > > p;
vector<vector<int> > r;
pair<int, int> get(pair<int, int> n)
{
    return p[n.first][n.second] == make_pair(0, 0) ? n : p[n.first][n.second] = get(p[n.first][n.second]);
}
void unio(pair<int, int> a, pair<int, int> b)
{
    a = get(a);
    b = get(b);
    if(a != b)
    {
        if(r[a.first][a.second] < r[b.first][b.second]) swap(a, b);
        p[a.first][a.second] = b;
        if(r[a.first][a.second] == r[b.first][b.second]) r[a.first][a.second]++;
    }
}
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int n, m, q;
    scanf("%d %d %d", &n, &m, &q);
    p.resize(n + 1, vector<pair<int, int> >(m + 1, make_pair(0, 0)));
    r.resize(n + 1, vector<int> (m + 1));
    vector<vector<int> > v(n + 2, vector<int>(m + 2, INT_MAX));
    vector<int> comp;
    for(int i = 1; i <= n; i++)
    {
        for(int j = 1; j <= m; j++)
        {
            scanf("%d", &v[i][j]);
            comp.push_back(v[i][j]);
        }
    }
    sort(comp.begin(), comp.end());
    comp.erase(unique(comp.begin(), comp.end()), comp.end());
    vector<vector<pair<int, int> > > add(n * m + 1);
    for(int i = 1; i <= n; i++)
    {
        for(int j = 1; j <= m; j++)
        {
            v[i][j] = lower_bound(comp.begin(), comp.end(), v[i][j]) - comp.begin();
            add[v[i][j]].push_back({i, j});
        }
    }
    vector<int> l(q), r(q);
    vector<pair<int, int> > a(q), b(q);
    vector<vector<int> > que(n * m + 1);
    for(int i = 0; i < q; i++)
    {
        scanf("%d %d %d %d", &a[i].first, &a[i].second, &b[i].first, &b[i].second);
        l[i] = -1;
        r[i] = n * m;
        que[(l[i] + r[i]) / 2].push_back(i);
    }
    int db = 0;
    while(db != q)
    {
        fill(p.begin(), p.end(), vector<pair<int, int> >(m + 1, make_pair(0, 0)));
        for(int i = 0; i <= n * m; i++)
        {
            for(auto z : add[i])
            {
                int x = z.first, y = z.second;
                if(v[x - 1][y] <= i) unio(z, {x - 1, y});
                if(v[x + 1][y] <= i) unio(z, {x + 1, y});
                if(v[x][y - 1] <= i) unio(z, {x, y - 1});
                if(v[x][y + 1] <= i) unio(z, {x, y + 1});
            }
            for(auto x : que[i])
            {
                if(get(a[x]) == get(b[x])) r[x] = i;
                else l[x] = i;
                if(l[x] + 1 == r[x])
                {
                    db++;
                }
                else
                {
                    que[(l[x] + r[x]) / 2].push_back(x);
                }
            }
            que[i].clear();
        }
    }
    for(int i = 0; i < q; i++)  printf("%d\n", comp[r[i]]);
}
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Accepted3ms2056 KiB
2Accepted3ms2332 KiB
subtask219/19
3Accepted8ms3896 KiB
4Accepted10ms3840 KiB
5Accepted10ms3844 KiB
6Accepted12ms3848 KiB
7Accepted12ms3972 KiB
8Accepted12ms4228 KiB
9Accepted10ms4400 KiB
10Accepted9ms5868 KiB
subtask320/20
11Accepted3ms3348 KiB
12Accepted4ms3772 KiB
13Accepted24ms7600 KiB
14Accepted303ms48268 KiB
15Accepted1.921s172444 KiB
subtask40/20
16Accepted1.378s159256 KiB
17Time limit exceeded3.063s131916 KiB
18Accepted1.865s125396 KiB
19Accepted2.072s122912 KiB
20Accepted1.855s121964 KiB
subtask531/31
21Accepted745ms90720 KiB
22Accepted614ms64680 KiB
23Accepted663ms67556 KiB
24Accepted660ms67568 KiB
25Accepted425ms66752 KiB
26Accepted386ms57216 KiB
27Accepted316ms57496 KiB
28Accepted287ms62356 KiB
29Accepted284ms60320 KiB
subtask60/10
30Time limit exceeded3.072s167724 KiB
31Time limit exceeded3.091s104616 KiB
32Time limit exceeded3.051s97280 KiB
33Time limit exceeded3.061s105156 KiB
34Accepted2.421s241780 KiB
35Accepted2.924s220492 KiB
36Accepted1.593s182564 KiB
37Accepted1.238s175468 KiB
38Accepted1.144s212768 KiB
39Accepted1.174s204184 KiB