Arpa's weak amphitheater and Mehrdad's valuable Hoses

2024-01-13 19:38

本文主要是介绍Arpa's weak amphitheater and Mehrdad's valuable Hoses,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

背包问题?!+并查集

一组朋友之中最多只能有一个人去,所以需要在写0-1背包时需要调整for循环的顺序

错解:

for(int i=1;i<=n;i++){sum_b=0,sum_w=0;if(pre[i]==i){for(int j=0;j<vn[i].size();j++){sum_b+=bn[vn[i][j]];sum_w+=wn[vn[i][j]];for(int k=w;k>=wn[vn[i][j]];k--){dp[k]=max(dp[k],dp[k-wn[vn[i][j]]]+bn[vn[i][j]]);}}for(int k=w;k>=sum_w;k--){dp[k]=max(dp[k],dp[k-sum_w]+sum_b);}}		}
不能保证一组朋友中最多只有一个人去

正解:

for(int i=1;i<=n;i++){if(pre[i]==i){for(int j=w;j>=0;j--){sum_b=0,sum_w=0;for(int k=0;k<vn[i].size();k++){sum_b+=bn[vn[i][k]],sum_w+=wn[vn[i][k]];if(j>=wn[vn[i][k]])dp[j]=max(dp[j],dp[j-wn[vn[i][k]]]+bn[vn[i][k]]);}if(j>=sum_w)dp[j]=max(dp[j],dp[j-sum_w]+sum_b);}				}		}
调整了里面的for循环的嵌套顺序

Just to remind, girls in Arpa's land are really nice.

Mehrdad wants to invite some Hoses to the palace for a dancing party. Each Hos has some weight wi and some beauty bi. Also each Hos may have some friends. Hoses are divided in some friendship groups. Two Hoses x and y are in the same friendship group if and only if there is a sequence of Hoses a1, a2, ..., ak such that ai and ai + 1 are friends for each 1 ≤ i < k, and a1 = x and ak = y.

Arpa allowed to use the amphitheater of palace to Mehrdad for this party. Arpa's amphitheater can hold at most w weight on it.

Mehrdad is so greedy that he wants to invite some Hoses such that sum of their weights is not greater than w and sum of their beauties is as large as possible. Along with that, from each friendship group he can either invite all Hoses, or no more than one. Otherwise, some Hoses will be hurt. Find for Mehrdad the maximum possible total beauty of Hoses he can invite so that no one gets hurt and the total weight doesn't exceed w.

Input

The first line contains integers nm and w (1  ≤  n  ≤  10001 ≤ w ≤ 1000) — the number of Hoses, the number of pair of friends and the maximum total weight of those who are invited.

The second line contains n integers w1, w2, ..., wn (1 ≤ wi ≤ 1000) — the weights of the Hoses.

The third line contains n integers b1, b2, ..., bn (1 ≤ bi ≤ 106) — the beauties of the Hoses.

The next m lines contain pairs of friends, the i-th of them contains two integers xi and yi (1 ≤ xi, yi ≤ nxi ≠ yi), meaning that Hoses xiand yi are friends. Note that friendship is bidirectional. All pairs (xi, yi) are distinct.

Output

Print the maximum possible total beauty of Hoses Mehrdad can invite so that no one gets hurt and the total weight doesn't exceed w.

Example
Input
3 1 5
3 2 5
2 4 2
1 2
Output
6
Input
4 2 11
2 4 6 6
6 4 2 1
1 2
2 3
Output
7
Note

In the first sample there are two friendship groups: Hoses {1, 2} and Hos {3}. The best way is to choose all of Hoses in the first group, sum of their weights is equal to 5 and sum of their beauty is 6.

In the second sample there are two friendship groups: Hoses {1, 2, 3}and Hos {4}. Mehrdad can't invite all the Hoses from the first group because their total weight is 12 > 11, thus the best way is to choose the first Hos from the first group and the only one from the second group. The total weight will be 8, and the total beauty will be 7.

#include<stdio.h>
#include<algorithm>
#include<vector>
#define maxn 1005
using namespace std;
int wn[maxn],bn[maxn],pre[maxn];
vector<int> vn[maxn];
int find(int a)
{return a==pre[a]?a:pre[a]=find(pre[a]);
}
void merge(int a,int b)
{int fa,fb;fa=find(a);fb=find(b);if(fa!=fb){pre[fa]=fb;}
}
int main()
{int n,m,w,dp[maxn]={0},sum_b,sum_w;scanf("%d%d%d",&n,&m,&w);for(int i=1;i<=n;i++){scanf("%d",&wn[i]);pre[i]=i;}		for(int i=1;i<=n;i++)scanf("%d",&bn[i]);for(int i=0;i<m;i++){int a,b;scanf("%d%d",&a,&b);merge(a,b);}for(int i=1;i<=n;i++)vn[find(i)].push_back(i);//0-1背包 for(int i=1;i<=n;i++){if(pre[i]==i){for(int j=w;j>=0;j--){sum_b=0,sum_w=0;for(int k=0;k<vn[i].size();k++){sum_b+=bn[vn[i][k]],sum_w+=wn[vn[i][k]];if(j>=wn[vn[i][k]])dp[j]=max(dp[j],dp[j-wn[vn[i][k]]]+bn[vn[i][k]]);}if(j>=sum_w)dp[j]=max(dp[j],dp[j-sum_w]+sum_b);}				}		}printf("%d",dp[w]);return 0;
}

这篇关于Arpa's weak amphitheater and Mehrdad's valuable Hoses的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/602566

相关文章

C++-标准库 weak_ptr

文章目录 概述构建cyclic reference例子 概述 shared_ptr的作用主要是在最后一个指向资源的shared_ptr销毁时自动释放资源,然而在某些场景下这种行为可能不被期望。例如: 两个或者多个对象都使用shared_ptr,并且相互通过shared_ptr指向对方,如果存在一个环路(cyclic reference),那么由于环路上的shared_ptr的u

[4 使用C++11解决内存泄漏问题] 4.1 shared_ptr / 4.2 unique_ptr / 4.3 weak_ptr

智能指针是存储指向动态分配(堆内存)对象指针的类。 通用实现技术是使用引用计数。每使用它一次,引用计数加1,每析构一次,引用计数减1,减为0时,删除所指向的堆内存。 C++11提供三种智能指针,std::shared_ptr,std::unique_prt和std::weak_ptr。需引用头文件。 4.1 shared_ptr共享的智能指针 shared_ptr使用引用计数,每一个s

浅析objective-c中的strong和weak

在才开始学习oc时,搞不懂什么时候用strong,什么时候用weak,经过一段时间的学习,我谈谈我对strong和weak的理解。 首先strong和weak这两个关键字是用来修饰变量,表示这个变量是强(strong)引用和弱(weak)引用 我们在程序中经常会用到“[[class alloc]init]” 这样的代码,我想你对它已经很熟。这是在开辟一块内存,并初始化。那么系统开辟了这块内

association weak 属性

association weak 属性 当给类添加分类添加属性时,我们一般使用关联对象来实现 管理关联对象的方法: objc_setAssociatedObject(id object, void * key, id value, <objc_AssociationPolicy policy) 以给定的key为对象设置关联对象的value objc_getAssociatedObject(i

Xcode7.3g更新后__weak错误解决方法

解决方法 Xcode更新后,使用__weak会提示 经查询发现解决方法 具体步骤 工程 – build Setting -> 搜MRR将搜索结果(Manual Retain Release) 改成 Yes 即可

ARC下Block何时会从栈自动被复制到推, 以及__block和__weak的使用问题

http://www.dahuangphone.com/dispbbs.asp?boardid=8&replyID=213&ID=85&skin=1 ARC下Block何时会从栈自动被复制到推, 以及__block和__weak的使用问题 由于Block是默认建立在栈上, 所以如果离开方法作用域, Block就会被丢弃, 在非ARC情况下, 我们要返回一个Block ,需要

Keil 编译器特有的功能 关键字和运算符 __weak

Keil> 编译器特有的功能 > 关键字和运算符 > __weak __weak 此关键字指示编译器弱导出符号。 可以将 __weak 关键字应用于函数和变量声明以及函数定义。 用法 函数和变量声明 对于声明,此存储类指定一个 extern 对象声明,即使不存在,也不会导致链接器将未解析的引用作为错误处理。 例如: __weak void f(void); ... f(); //

1618 - Weak Key【贪心】【搜索】

题目大意样例 inputoutput解释 思路代码Hit 题目大意 传送门 给出n个case 每个case中有m个数字,对于每一组case,问是否存在4个整数 Np Nq Nr Ns (1 <= p < q < r < s <= k),使得 Nq > Ns > Np > Nr 或者 Nq < Ns < Np < Nr。 样例 input 3 6 10 30

ios __block与__weak

http://www.jianshu.com/p/d73772dc36a8其实这个问题在现在来说主要就是2个区别:block下循环引用的问题__block本身并不能避免循环引用,避免循环引用需要在block内部把__block修饰的obj置为nil__weak可以避免循环引用,但是其会导致外部对象释放了之后,block 内部也访问不到这个对象的问题,我们可以通过在 block 内部声明一个