QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#506734#1877. Matryoshka DollspropaneWA 74ms10412kbC++208.5kb2024-08-05 21:00:442024-08-05 21:00:46

Judging History

你现在查看的是最新测评结果

  • [2024-08-05 21:00:46]
  • 评测
  • 测评结果:WA
  • 用时:74ms
  • 内存:10412kb
  • [2024-08-05 21:00:44]
  • 提交

answer

#include<iostream>
#include<cstring>
#include<vector>
#include<array>
#include<set>
#include<algorithm>
#include<cassert>
using namespace std;
using LL = long long;

const int maxn = 1e5 + 5;

namespace BIT{

LL tr[maxn];

int lowbit(int x){
    return x & -x;
}

void modify(int x, int v){
    while(x < maxn){
        tr[x] += v;
        x += lowbit(x);
    }
}

LL query(int x){
    LL ans = 0;
    while(x){
        ans += tr[x];
        x -= lowbit(x);
    }
    return ans;
}

LL query(int l, int r){
    return query(r) - query(l - 1);
}

}

const int INF = 0x3f3f3f3f;

// min
namespace ST1{

int tr[maxn * 4];

void modify(int u, int l, int r, int x, int v){
    if (l == r){
        tr[u] = v;
        return;
    }
    int mid = (l + r) / 2;
    if (x <= mid) modify(2 * u, l, mid, x, v);
    else modify(2 * u + 1, mid + 1, r, x, v);
    tr[u] = min(tr[2 * u], tr[2 * u + 1]);
}

int query(int u, int l, int r, int L, int R){
    if (l > R or r < L) return INF;
    if (l >= L and r <= R) return tr[u];
    int mid = (l + r) / 2;
    return min(query(2 * u, l, mid, L, R), query(2 * u + 1, mid + 1, r, L, R));
}

}

// max
namespace ST2{

int tr[maxn * 4];

void modify(int u, int l, int r, int x, int v){
    if (l == r){
        tr[u] = v;
        return;
    }
    int mid = (l + r) / 2;
    if (x <= mid) modify(2 * u, l, mid, x, v);
    else modify(2 * u + 1, mid + 1, r, x, v);
    tr[u] = max(tr[2 * u], tr[2 * u + 1]);
}

int query(int u, int l, int r, int L, int R){
    if (l > R or r < L) return 0;
    if (l >= L and r <= R) return tr[u];
    int mid = (l + r) / 2;
    return max(query(2 * u, l, mid, L, R), query(2 * u + 1, mid + 1, r, L, R));
}

}

int main(){

#ifdef LOCAL
    freopen("data.in", "r", stdin);
    freopen("data.out", "w", stdout);
#endif

    cin.tie(0);
    cout.tie(0);
    ios::sync_with_stdio(0);

    memset(ST1::tr, 0x3f, sizeof ST1::tr);
    int n, q;
    cin >> n >> q;
    vector<int> a(n + 1), p(n + 1);
    for(int i = 1; i <= n; i++){
        cin >> a[i];
        p[a[i]] = i;
    }
    vector<array<int, 3> > query;
    vector<LL> ans(q);
    for(int i = 0; i < q; i++){
        int l, r;
        cin >> l >> r;
        if (l == r){
            ans[i] = 0;
        }
        else{
            query.push_back({l, r, i});
        }
    }

    auto solve = [&](auto &&solve, int l, int r, vector<array<int, 3> > query) -> void {
        if (query.empty()) return;
        int mid = (l + r) / 2;
        vector<array<int, 3> > ql, qr, cur;
        for(auto [l, r, id] : query){
            if (r <= mid) ql.push_back({l, r, id});
            else if (l > mid) qr.push_back({l, r, id});
            else cur.push_back({l, r, id});
        }
        solve(solve, l, mid, ql);
        solve(solve, mid + 1, r, qr);

        if (cur.empty()) return;

        {

            LL sum = 0;
            set<int> s;

            vector<pair<int, int> > pos;

            auto get = [&](int l, int r, int sign){
                int x = ST1::query(1, 1, n, l, r);
                int d = abs(p[l] - p[r]);
                sum += d;
                if (x <= r){
                    int v = sign * (-d + mid - p[l] + mid - p[r]);
                    BIT::modify(x, v);
                    pos.push_back({x, v});
                }
            };

            auto get_last = [&](int val, int sign){
                int x = ST1::query(1, 1, n, val, n);
                if (x <= r){
                    int v = sign * (mid - p[val]);
                    BIT::modify(x, v);
                    pos.push_back({x, v});
                }
            };

            auto get_first = [&](int val, int sign){
                int x = ST1::query(1, 1, n, 1, val);
                if (x <= r){
                    int v = sign * (mid - p[val]);
                    BIT::modify(x, v);
                    pos.push_back({x, v});
                }
            };

            auto add = [&](int x){
                if (s.empty()){
                    s.insert(x);
                    get_last(x, 1);
                    get_first(x, 1);
                    return;
                }
                auto nxt = s.upper_bound(x);
                if (nxt == s.end()){
                    auto pre = prev(nxt);
                    get_last(*pre, -1);
                    get_last(x, 1);
                    get(*pre, x, 1);
                }
                else{
                    if (nxt == s.begin()){
                        get_first(*nxt, -1);
                        get_first(x, 1);
                        get(x, *nxt, 1);
                    }
                    else{
                        auto pre = prev(nxt);
                        get(*pre, *nxt, -1);
                        get(*pre, x, 1);
                        get(x, *nxt, 1);
                    }
                }
                s.insert(x);
            };

            for(int i = mid + 1; i <= r; i++){
                ST1::modify(1, 1, n, a[i], i);
            }

            sort(cur.begin(), cur.end(), [&](auto &&a, auto &&b){
                return a[0] > b[0];
            });

            for(int i = mid, j = 0; i >= l; i--){
                add(a[i]);
                while(j < cur.size() and cur[j][0] == i){
                    auto [l, r, id] = cur[j++];
                    ans[id] += sum + BIT::query(mid + 1, r);
                }
            }

            for(int i = mid + 1; i <= r; i++){
                ST1::modify(1, 1, n, a[i], INF);
            }

            for(auto [x, v] : pos) BIT::modify(x, -v);
        }
        {
            LL sum = 0;
            set<int> s;

            vector<pair<int, int> > pos;

            auto get = [&](int l, int r, int sign){
                int x = ST2::query(1, 1, n, l, r);
                int d = abs(p[l] - p[r]);
                sum += d;
                if (x >= l){
                    int v = sign * (-d + p[l] - mid + p[r] - mid);
                    BIT::modify(x, v);
                    pos.push_back({x, v});
                }
            };

            auto get_last = [&](int val, int sign){
                int x = ST2::query(1, 1, n, val, n);
                if (x >= l){
                    int v = sign * (p[val] - mid);
                    BIT::modify(x, v);
                    pos.push_back({x, v});
                }
            };

            auto get_first = [&](int val, int sign){
                int x = ST2::query(1, 1, n, 1, val);
                if (x >= l){
                    int v = sign * (p[val] - mid);
                    BIT::modify(x, v);
                    pos.push_back({x, v});
                }
            };

            auto add = [&](int x){
                if (s.empty()){
                    s.insert(x);
                    get_last(x, 1);
                    get_first(x, 1);
                    return;
                }
                auto nxt = s.upper_bound(x);
                if (nxt == s.end()){
                    auto pre = prev(nxt);
                    get_last(*pre, -1);
                    get_last(x, 1);
                    get(*pre, x, 1);
                }
                else{
                    if (nxt == s.begin()){
                        get_first(*nxt, -1);
                        get_first(x, 1);
                        get(x, *nxt, 1);
                    }
                    else{
                        auto pre = prev(nxt);
                        get(*pre, *nxt, -1);
                        get(*pre, x, 1);
                        get(x, *nxt, 1);
                    }
                }
                s.insert(x);
            };

            for(int i = l; i <= mid; i++){
                ST2::modify(1, 1, n, a[i], i);
            }

            sort(cur.begin(), cur.end(), [&](auto &&a, auto &&b){
                return a[1] < b[1];
            });

            for(int i = mid + 1, j = 0; i <= r; i++){
                add(a[i]);
                while(j < cur.size() and cur[j][1] == i){
                    auto [l, r, id] = cur[j++];
                    ans[id] += sum + BIT::query(l, mid);
                }
            }

            for(int i = l; i <= mid; i++){
                ST2::modify(1, 1, n, a[i], 0);
            }

            for(auto [x, v] : pos) BIT::modify(x, -v);
        }
    };

    solve(solve, 1, n, query);

    for(auto x : ans) cout << x << '\n';

}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 6500kb

input:

5 5
1 5 2 4 3
1 5
1 4
1 3
1 2
1 1

output:

7
5
3
1
0

result:

ok 5 number(s): "7 5 3 1 0"

Test #2:

score: 0
Accepted
time: 1ms
memory: 5600kb

input:

1 1
1
1 1

output:

0

result:

ok 1 number(s): "0"

Test #3:

score: -100
Wrong Answer
time: 74ms
memory: 10412kb

input:

100000 1
2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98 100 102 104 106 108 110 112 114 116 118 120 122 124 126 128 130 132 134 136 138 140 142 144 146 148 150 152 154 156 158 160 162 164 166 168 170 172 ...

output:

278022218

result:

wrong answer 1st numbers differ - expected: '4999950000', found: '278022218'