UOJ#386. 【UNR #3】鴿子固定器(連結串列)

自為風月馬前卒發表於2018-09-11

題意

題目連結

為了固定S**p*鴿鴿,whx和zzt來到鴿具商店選購鴿子固定器。

鴿具商店有 nn 個不同大小的固定器,現在可以選擇至多 mm 個來固定S**p*鴿鴿。每個固定器有大小 sisi 和牢固程度 vivi。

如果他們選購的固定器大小不一或是不牢固,固定S**p*鴿鴿的時候肯定會很頭疼,所以定義選擇的物品總牢固程度和的 dvdv 次方減大小極差的 dsds 次方為這個方案的價值,求不同選購方案中,價值的最大值。

Sol

非常好的一道猜結論

如果我們按$s$排序後,我們就可以列舉$max   s_i$和$min s_i$

考慮到$M$很小,對於長度$leqslant M$的部分直接暴力列舉

那長度$ > M$的呢?很顯然,我們需要暴力裡面$v$值較大的點

因此我們用一個連結串列維護處所有的數,然後從小到大列舉$v$值,同時列舉一下能覆蓋到它的區間來更新答案

#include<cstdio>
#include<algorithm>
#include<queue>
#define Pair pair<int, int> 
#define MP(x, y) make_pair(x, y)
#define fi first
#define se second
#define LL long long
 #define int long long  
using namespace std;
const int MAXN = 2 * 1e5 + 10, B = 25000;
inline int read() {
    char c = getchar(); int x = 0, f = 1;
    while(c < `0` || c > `9`) {if(c == `-`) f = -1; c = getchar();}
    while(c >= `0` && c <= `9`) x = x * 10 + c - `0`, c = getchar();
    return x * f;
}
int N, M, ds, dv;
int l[MAXN], r[MAXN];
LL Get(LL x, int opt) {
    if(opt == 1) return x;
    else return x * x;
}
struct Node {
    int s, v;
    bool operator < (const Node &rhs) const {
        return s == rhs.s ? v < rhs.v : s < rhs.s;
    }
}a[MAXN];
main() {
    priority_queue<Pair> q;
    N = read(); M = read(); ds = read(); dv = read();
    for(int i = 1; i <= N; i++) {
        a[i].s = read(), a[i].v = read(); // 澶у皬 / 鐗㈠滻紼嬪害
        
    }
    sort(a + 1, a + N + 1);
    for(int i = 1; i <= N; i++) {
        q.push(MP(-a[i].v, i));
    }
    int ans = 0;
    for(int i = 1; i <= N; i++) {
        int sum = 0;
        for(int j = i; j <= i + M - 1 && j <= N; j++) {
            sum += a[j].v;
            ans = max(ans, Get(sum, dv) - Get(a[j].s - a[i].s, ds));
        }
    }
  // printf("%d
", ans);
    for(int i = 1; i <= N; i++) r[i] = i + 1, l[i] = i - 1;
    while(!q.empty()) {
     //   printf("%d
", q.top().fi);
        int pos = q.top().se; q.pop();
        int sum = a[pos].v, x = pos, y = pos;
        for(int j = 1; j < M; j++) {
            if(l[x]) x = l[x], sum += a[x].v;
            else if(r[y] <= N) y = r[y], sum += a[y].v;
        }
        while(x != r[pos] && y <= N) {
            ans = max(ans, Get(sum, dv) - Get(a[y].s - a[x].s, ds));
            sum -= a[x].v;
            x = r[x]; y = r[y];
            sum += a[y].v;
        }
        r[l[pos]] = r[pos];
        l[r[pos]] = l[pos];
    }
    printf("%lld", ans);
    
    return 0;
}
/*
*/

相關文章