Codeforces Round #383 (Div. 2) D. Arpa's weak amphitheater and Mehrdad's valuable Hoses —— DP(01背包)
题目链接:http://codeforces.com/contest/742/problem/D
1 second
256 megabytes
standard input
standard output
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.
The first line contains integers n, m and w (1 ≤ n ≤ 1000,
, 1 ≤ 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 ≤ n, xi ≠ yi),
meaning that Hoses xiand yi are
friends. Note that friendship is bidirectional. All pairs (xi, yi) are
distinct.
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.
3 1 5
3 2 5
2 4 2
1 2
6
4 2 11
2 4 6 6
6 4 2 1
1 2
2 3
7
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.
题解:
1.通过并查集,得出每一组有哪些人,并且将这些人的信息重新归类。
2.对于每一组,要么全选,要么只选一人,要么都不选。那么将全选的又看成一个“人 ”,并放入这个集合中,所以就变成了01背包了。
3.代码中,cnt为集合的个数,c[i]为集合i的元素个数,x[i][j]、y[i][j]为i集合中第j个元素的体重和颜值。
类似的题:http://blog.csdn.net/dolfamingo/article/details/73438052
写法一:
#include<bits/stdc++.h>
//#define LOCAL
using namespace std;
typedef long long LL;
const double eps = 1e-;
const int INF = 2e9;
const LL LNF = 9e18;
const int mod = 1e9+;
const int maxn = 1e3+; int n, m, w, a[maxn], b[maxn];
int fa[maxn], x[maxn][maxn], y[maxn][maxn], c[maxn], cnt, dp[maxn][maxn], vis[maxn]; int find(int x) { return (x==fa[x])?x:x=find(fa[x]); } void init()
{
scanf("%d%d%d",&n,&m,&w);
for(int i = ; i<=n; i++)
scanf("%d",&a[i]);
for(int i = ; i<=n; i++)
scanf("%d",&b[i]);
for(int i = ; i<=n; i++)
fa[i] = i; for(int i = ; i<=m; i++)
{
int u, v;
scanf("%d%d",&u, &v);
u = find(u);
v = find(v);
if(u!=v)
fa[u] = v;
} for(int i = ; i<=n; i++)
{
int f = find(i);
if(!vis[f]) vis[f] = ++cnt;
f = vis[f]; //将f赋值为集合的序号
++c[f]; //集合内元素的个数
x[f][c[f]] = a[i];
y[f][c[f]] = b[i];
} for(int i = ; i<=cnt; i++) //全部都取,相当于每个集合增加一个元素
{
int X = , Y = ;
for(int j = ; j<=c[i]; j++)
{
X += x[i][j];
Y += y[i][j];
}
++c[i];
x[i][c[i]] = X;
y[i][c[i]] = Y;
}
} void solve()
{
for(int i = ; i<=cnt; i++)
for(int j = ; j<=w; j++)
{
for(int k = ; k<=c[i]; k++) //Remember!!!
dp[i][j] = dp[i-][j]; for(int k = ; k<=c[i]; k++)
if(j>=x[i][k])
dp[i][j] = max(dp[i][j], dp[i-][j-x[i][k]]+y[i][k]);
} cout<< dp[cnt][w]<<endl;
} int main()
{
#ifdef LOCAL
freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
#endif
init();
solve();
}
写法二:
#include<bits/stdc++.h>
//#define LOCAL
using namespace std;
typedef long long LL;
const double eps = 1e-;
const int INF = 2e9;
const LL LNF = 9e18;
const int mod = 1e9+;
const int maxn = 1e3+; int n, m, w, a[maxn], b[maxn];
int fa[maxn], x[maxn][maxn], y[maxn][maxn], c[maxn], cnt, dp[maxn], vis[maxn]; int find(int x) { return (x==fa[x])?x:x=find(fa[x]); } void init()
{
scanf("%d%d%d",&n,&m,&w);
for(int i = ; i<=n; i++)
scanf("%d",&a[i]);
for(int i = ; i<=n; i++)
scanf("%d",&b[i]);
for(int i = ; i<=n; i++)
fa[i] = i; for(int i = ; i<=m; i++)
{
int u, v;
scanf("%d%d",&u, &v);
u = find(u);
v = find(v);
if(u!=v)
fa[u] = v;
} for(int i = ; i<=n; i++)
{
int f = find(i);
if(!vis[f]) vis[f] = ++cnt;
f = vis[f]; //将f赋值为集合的序号
++c[f]; //集合内元素的个数
x[f][c[f]] = a[i];
y[f][c[f]] = b[i];
} for(int i = ; i<=cnt; i++) //全部都取,相当于每个集合增加一个元素
{
int X = , Y = ;
for(int j = ; j<=c[i]; j++)
{
X += x[i][j];
Y += y[i][j];
}
++c[i];
x[i][c[i]] = X;
y[i][c[i]] = Y;
}
} void solve()
{
for(int i = ; i<=cnt; i++) //01背包
for(int j = w; j>=; j--)
for(int k = ; k<=c[i]; k++)
if(j>=x[i][k])
dp[j] = max(dp[j], dp[j-x[i][k]]+y[i][k]); cout<< dp[w]<<endl;
} int main()
{
#ifdef LOCAL
freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
#endif
init();
solve();
}
Codeforces Round #383 (Div. 2) D. Arpa's weak amphitheater and Mehrdad's valuable Hoses —— DP(01背包)的更多相关文章
- Codeforces Round #383 (Div. 2) D. Arpa's weak amphitheater and Mehrdad's valuable Hoses(分组背包+dsu)
D. Arpa's weak amphitheater and Mehrdad's valuable Hoses Problem Description: Mehrdad wants to invit ...
- Codeforces Round #383 (Div. 2)D. Arpa's weak amphitheater and Mehrdad's valuable Hoses(dp背包+并查集)
题目链接 :http://codeforces.com/contest/742/problem/D 题意:给你n个女人的信息重量w和美丽度b,再给你m个关系,要求邀请的女人总重量不超过w 而且如果邀请 ...
- Codeforces 741B:Arpa's weak amphitheater and Mehrdad's valuable Hoses(01背包+并查集)
http://codeforces.com/contest/741/problem/B 题意:有 n 个人,每个人有一个花费 w[i] 和价值 b[i],给出 m 条边,代表第 i 和 j 个人是一个 ...
- codeforces 742D Arpa's weak amphitheater and Mehrdad's valuable Hoses ——(01背包变形)
题意:给你若干个集合,每个集合内的物品要么选任意一个,要么所有都选,求最后在背包能容纳的范围下最大的价值. 分析:对于每个并查集,从上到下滚动维护即可,其实就是一个01背包= =. 代码如下: #in ...
- Arpa's weak amphitheater and Mehrdad's valuable Hoses
Arpa's weak amphitheater and Mehrdad's valuable Hoses time limit per test 1 second memory limit per ...
- B. Arpa's weak amphitheater and Mehrdad's valuable Hoses
B. Arpa's weak amphitheater and Mehrdad's valuable Hoses time limit per test 1 second memory limit p ...
- Codeforces Round #383 (Div. 2) C. Arpa's loud Owf and Mehrdad's evil plan —— DFS找环
题目链接:http://codeforces.com/contest/742/problem/C C. Arpa's loud Owf and Mehrdad's evil plan time lim ...
- Codeforces Round #383 (Div. 2)C. Arpa's loud Owf and Mehrdad's evil plan
C. Arpa's loud Owf and Mehrdad's evil plan time limit per test 1 second memory limit per test 256 me ...
- Codeforces Round #383 (Div. 2) B. Arpa’s obvious problem and Mehrdad’s terrible solution —— 异或
题目链接:http://codeforces.com/contest/742/problem/B B. Arpa's obvious problem and Mehrdad's terrible so ...
随机推荐
- 网络入侵检测规避工具fragrouter
网络入侵检测规避工具fragrouter 网络入侵检测系统可以通过拦截数据包,获取内容进而判断是否为恶意数据包.对于传输较大的数据包,通常会采用分片的方式,将大数据包拆分为小数据包进行传输.如果入 ...
- Hibernate中的对象状态,及自动更新原因,Hibernate set对象后不调用update却自动更新
原文:http://www.cnblogs.com/xiaoda/p/3225617.html Hibernate的对象有三种状态,分别为:瞬时状态 (Transient). 持久化状态(Persis ...
- PS 如何用PS制作GIF图像
首先我们准备好要依次播放的图片(这里使用的是CS的光标缩放,只有两张图) 然后在窗口中打开动画,则下方会出现动画的面板. 点击图层按钮可以添加一帧,我们让第一帧显示为大图片,第二帧为小图片.还可以设置 ...
- C 标准库 - <errno.h>
C 标准库 - <errno.h> 简介 C 标准库的 errno.h 头文件定义了整数变量 errno,它是通过系统调用设置的,在错误事件中的某些库函数表明了什么发生了错误.该宏扩展为类 ...
- C语言-多重背包问题
多重背包问题 问题:有N种物品和一个容量为V的背包.第i种物品最多有n[i]件可用,每件费用是c[i],价值是w[i].求解将哪些物品装入背包可使这些物品的费用总和不超过背包容量,且价值总和最大. 分 ...
- c#打包文件解压缩 C#中使用委托、接口、匿名方法、泛型委托实现加减乘除算法 一个简单例子理解C#的协变和逆变 对于过长字符串的大小比对
首先要引用一下类库:using Ionic.Zip;这个类库可以到网上下载. 下面对类库使用的封装方法: 得到指定的输入流的ZIP压缩流对象 /// <summary> /// 得到指定的 ...
- Allegro基本操作——PCB布线
转:http://blog.sina.com.cn/s/blog_1538bc9470102vyyq.html http://www.elecfans.com/article/80/110/2010/ ...
- 这6种思维,学会了你就打败了95%文案!zz
本文笔者为大家讲述了文案高手写文案时最常用的六种思维,这六种思维也都是文案新手容易入的坑. 有的人做了3,5年的文案,还是小白一个.而有的人短短1,2年的时间,却可以成为文案高手. 为什么? 我总结 ...
- JSP 随记
jstl <c:forEach> 遍历,多个<option>时显示"全部".单个 option时,默认选中! 引入:<%@ taglib prefix ...
- Creating Tabbed Applications
新建一个空工程,如图 新建类 using System; using UIKit; namespace TabbedApplication { public class TabController : ...