首页 > 其他分享 >20221112_T1A+_整体二分背包

20221112_T1A+_整体二分背包

时间:2022-11-12 19:33:05浏览次数:54  
标签:背包 dpr int ++ 20221112 read dpl +_ T1A

题意

给定一个树,有 \(q\) 个询问,每次都是其子树内做背包。

题解

赛时得分: 100/100

子树,我们不难想到用 dfs 序上操作,那么现在问题变成了区间背包。

区间背包怎么做,首先,对于一般的背包删除是需要动脑子的(并不是不行,所以其实按道理有一个 \(\mathcal{O}(nV\sqrt{n})\) 的莫队算法)但是应该非常勉强过不了把。

那么区间背包还有什么办法么?

整体二分!

我们把过区间中点的区间找出来就好了。

代码调了 1h,还不错。

代码

#include <bits/stdc++.h>
using namespace std;
static char buf[1000000],*p1=buf,*p2=buf,obuf[1000000],*p3=obuf;
#define getchar() p1==p2&&(p2=(p1=buf)+fread(buf,1,1000000,stdin),p1==p2)?EOF:*p1++
template <typename T>inline void read(T& t){t=0; register char ch=getchar(); register int fflag=1;while(!('0'<=ch&&ch<='9')) {if(ch=='-') fflag=-1;ch=getchar();}while(('0'<=ch&&ch<='9')){t=t*10+ch-'0'; ch=getchar();} t*=fflag;}
template <typename T,typename... Args> inline void read(T& t, Args&... args) {read(t);read(args...);}
const int N = 5e3 + 10, inf = 0x3f3f3f3f, V = 5e3;

typedef long long ll;
int n, L[N], R[N], cnt, w[N], v[N];
vector<int>G[N];

void dfs(int u, int fa) {
    L[u] = ++cnt;
    for(int v : G[u]) {
        if(v == fa) continue;
        dfs(v, u);
    }
    R[u] = cnt;
}
struct Querys {
    int val, l, r, id;
};
vector<Querys>Q;
ll ans[100008], dpl[N][N], dpr[N][N];

inline void solve(int l, int r, vector<Querys>q) {
    if(l > r) return;
    if(l == r) {
        for(int i = 0; i < q.size(); ++i) ans[q[i].id] = ((q[i].val >= v[l]) ? w[l] : 0);
        return;
    }
    vector<Querys>left, right, todo;
    int mid = l + r >> 1;
    for(int i = 0; i < q.size(); ++i) {
        if(q[i].r <= mid) left.push_back(q[i]);
        else if(q[i].l > mid) right.push_back(q[i]);
        else todo.push_back(q[i]);
    }
    for(int i = mid + 1; i >= l; --i) for(int j = 0; j <= V; ++j) dpl[i][j] = 0;
    for(int i = mid; i <= r; ++i) for(int j = 0; j <= V; ++j) dpr[i][j] = 0;
    for(int i = mid; i >= l; --i) {
        for(int j = 0; j <= V; ++j) {
            if(j >= v[i])dpl[i][j] = max(dpl[i + 1][j], dpl[i + 1][j - v[i]] + w[i]);
            else dpl[i][j] = dpl[i + 1][j];
        }
        for(int j = 1; j <= V; ++j) dpl[i][j] = max(dpl[i][j], dpl[i][j - 1]);
    }
    for(int i = mid + 1; i <= r; ++i) {
        for(int j = 0; j <= V; ++j) {
            if(j >= v[i]) dpr[i][j] = max(dpr[i - 1][j], dpr[i - 1][j - v[i]] + w[i]);
            else dpr[i][j] = dpr[i - 1][j];
        }
        for(int j = 1; j <= V; ++j) dpr[i][j] = max(dpr[i][j], dpr[i][j - 1]);
    }
    for(int i = 0; i < todo.size(); ++i) {
        int x = todo[i].l, y = todo[i].r, val = todo[i].val;
        for(int j = 0; j <= val; ++j) ans[todo[i].id] = max(ans[todo[i].id], dpl[x][j] + dpr[y][val - j]);
    }
    solve(l, mid, left), solve(mid + 1, r, right);
}
void write(ll x) {
    if(x >= 10) write(x / 10);
    putchar(x % 10 + '0');
}

signed main() {
    freopen("A.in", "r", stdin);
    freopen("A.out", "w", stdout);
    read(n);
    for(int i = 1; i < n; ++i) {
        int u, v;
        read(u, v);
        G[u].push_back(v);
        G[v].push_back(u);
    }
    dfs(1, -1);
    for(int i = 1; i <= n; ++i) read(w[L[i]], v[L[i]]);
    int q;
    read(q);
    for(int i = 1; i <= q; ++i) {
        int x, val;
        read(x, val);
        Q.push_back({val, L[x], R[x], i});
    }
    solve(1, n, Q);
    for(int i = 1; i <= q; ++i) write(ans[i]), puts("");
    return 0;
}

标签:背包,dpr,int,++,20221112,read,dpl,+_,T1A
From: https://www.cnblogs.com/Mercury-City/p/16884483.html

相关文章

  • python Python+ffmpeg 实现视频压缩
    一,ffmpeg应用场景:视频文件过大,需要进行压缩,或降低分辨率,可以使用ffmpeg工具实现。已验证超过2GB大小的视频文件,可以正常压缩。使用方法:可参考如下几篇博文:1.https://w......
  • 创龙AD+全志T3 ad_display 开发案例
    前言本文主要介绍基于全志科技T3(ARMCortex-A7)处理器的8/16通道AD采集开发案例,使用核芯互联CL1606/CL1616AD芯片,亦适用于ADIAD7606/AD7616。CL1606/CL1616与AD7606/AD......
  • [C++] - GCC和LLVM对方法 warning: non-void function does not return a value [-Wre
    最近做一个C++开源项目发现一个奇怪问题,通过clang编译链接执行程序每到有一个就崩溃了,gcc下则没有此问题。后来通过调试,发现原因是bool返回的方法是没有return语句!问......
  • SpringBoot+Vue实现excel导入带格式化的时间参数(moment格式化明天日期并设置el-date-
    场景若依管理系统前后端分离版基于ElementUI和SpringBoot怎样实现Excel导入和导出:https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/108278834在上面进行Ex......
  • C++预定义指令
    C++预定义指令1.预定义器以#开头的命令,称之为预定义器指令。预定义器指令不在编译器中执行,而是在预定义器中运行。常见的预定义器指令为//文件包含指令#include//宏......
  • C++学习------cerrno头文件的作用与源码学习
    引言cerrno是C++对errno.h头文件的封装,里面实现了一个errno宏,返回上一次的错误码。我们来看看这个宏的具体实现以及其背后的原理。cerrno头文件代码位置:​​www.aospxref.......
  • 1001 A+B Format
    1001A+BFormatCalculate a+b andoutputthesuminstandardformat--thatis,thedigitsmustbeseparatedintogroupsofthreebycommas(unlessthereare......
  • WINDOWS下从源码编译Carla0.9.13+UE4.26
    CARLA是一个开源的自动驾驶模拟器,基于UE4。本篇文章讲述如何在windows系统上从源码编译Carla0.9.13+UE4.26。参考官方文档:https://carla.readthedocs.io/en/0.9.13/build_......
  • 理解C++中 const 在指针中的用法
    intmain(){ int*constarray; constint*array; inta=10; array=&a;//Youcan'texchangearrayself,arrayjustisaintegar// *array=13;//Thisiserror......
  • 数据库为什么不用红黑树而用B+树
    得分点磁盘IO标准回答首先,红黑树是一种近似平衡二叉树(不完全平衡),结点非黑即红的树,它的树高最高不会超过2*log(n),因此查找的时间复杂度为O(log(n)),无论是增删改查......