【POJ - 3211】Washing Clothes (dp,0-1背包中点问题)

题干:

Dearboy was so busy recently that now he has piles of clothes to wash. Luckily, he has a beautiful and hard-working girlfriend to help him. The clothes are in varieties of colors but each piece of them can be seen as of only one color. In order to prevent the clothes from getting dyed in mixed colors, Dearboy and his girlfriend have to finish washing all clothes of one color before going on to those of another color.

From experience Dearboy knows how long each piece of clothes takes one person to wash. Each piece will be washed by either Dearboy or his girlfriend but not both of them. The couple can wash two pieces simultaneously. What is the shortest possible time they need to finish the job?

Input

The input contains several test cases. Each test case begins with a line of two positive integers M and N (M < 10, N < 100), which are the numbers of colors and of clothes. The next line contains M strings which are not longer than 10 characters and do not contain spaces, which the names of the colors. Then follow N lines describing the clothes. Each of these lines contains the time to wash some piece of the clothes (less than 1,000) and its color. Two zeroes follow the last test case.

Output

For each test case output on a separate line the time the couple needs for washing.

Sample Input

3 4
red blue yellow
2 red
3 blue
4 blue
6 red
0 0

Sample Output

10

题目大意:

Dearboy和他的女朋友用一个盆一起洗m件衣服,共有n总颜色(每件衣服只有一种颜色)。  为了放置不同颜色互染,每次只能洗一种颜色的衣服,在这件衣服洗完之前不能洗另外一种衣服。 Dearboy和他女朋友可以同时一起洗衣服,但是不能同时洗同一件衣服,也不能同时洗不同种颜色的衣服。 

一只每件衣服所需时间,问最少花费多少时间可以全部洗完。

(ps:这里建议自己,如果还能看得到这篇题解,自己再读一遍题,有很多的地方可以帮助自己提升阅读速度和理解题意,比如The couple can wash two pieces simultaneously.  这一句刚开始就理解错了,理解成了可以同时洗两种,即两种不能同时一个人洗,但是可以男生洗一种,女票洗一种 这样。但是其实人家的意思是,可以同时洗两件,而不是两种!。因为你看题目区分不同种的用词是color,而区分每一件,都用的是piece这种的!所以读到这里不用仔细纠结量词,直接看上文的这个词表示的是什么意思,那在这里就表示啥意思了。。。再举个例子,Each test case begins with a line of two positive integers M and N (M < 10, N < 100), which are the numbers of colors and of clothes.这句中的the number of 就是英语老师教过的   ...的数量   的意思,但是有的题目中,他的意思是,....的编号,因为比如他会说 把1~n这些物品编号成number 1 ~ n   所以这时候就要注意一下了!!,the number of A  是不是  有可能是别的意思)

解题报告:

       poj有毒,,,首先这题卡vector了,优化了很多地方还是只能934ms过。(澄清,,没卡vector,可以294ms飘过,但是卡memset了,需要你的数组开的不能太大,1e5就刚刚好,开1e6就炸了,tle妥妥的,应该是初始化dp的时候耗时太长了。。)所以还是老老实实的开一个num数组来辅助time这个二维数组的输入吧、、、相当于替代了vector的time[mp[col]].push_back(tm);这一步,其余的还好。相当于对每一种衣服做0-1背包记一个时间,然后每一种的这个时间求和即可。

AC代码1:(294ms)(vector + 二维的dp数组)

#include<cstdio>
#include<cstring>
#include<string>
#include<iostream>
#include<algorithm>
#include<map>
#include<vector>
using namespace std;
map<string ,int> mp; 
int n,m;
int top;
int tm;//每种颜色的衣服所洗的总共的时间 
int dp[15][100000 + 5];
vector<int> time[50];
int sum[20];
int main()
{char col[50];while(scanf("%d%d",&m,&n)) {if(m == 0 && n == 0 ) break;mp.clear();for(int i = 1; i<=20; i++) time[i].clear();memset(dp,0,sizeof dp);memset(sum,0,sizeof sum);top = 0;for(int i = 1; i<=m; i++) {scanf("%s",col);//if(mp.find(col) == mp.end()) mp[col] = ++top;mp[col] = i;}for(int i = 1; i<=n; i++) {scanf("%d%s",&tm,col);time[mp[col]].push_back(tm);sum[mp[col]] += tm;}int ans = 0;for(int k = 1; k<=m; k++) {
//			memset(dp,0,sizeof(dp));for(int i = 0; i<time[k].size(); i++) {for(int j = sum[k]/2; j>=time[k][i]; j--) {dp[k][j] = max(dp[k][j],dp[k][j-time[k][i]] + time[k][i]);}}ans +=(sum[k] - dp[k][sum[k]/2]);}printf("%d\n",ans); }return 0 ;
}

AC代码2:(63ms)(没用vector + 一维dp数组)

#include<cstdio>
#include<cstring>
#include<string>
#include<iostream>
#include<algorithm>
#include<map>
#include<vector>
using namespace std;int n,m;
int top;
int tm;//每种颜色的衣服所洗的总共的时间 
int dp[100000 + 5];
int num[15];
int time[15][50];
int sum[50];
int main()
{char col[50];while(~scanf("%d%d",&m,&n)) {if(m == 0 && n == 0 ) break;map<string, int> mp;memset(num,0,sizeof num);
//		for(int i = 1; i<=20; i++) time[i].clear();memset(dp,0,sizeof dp);memset(sum,0,sizeof sum);top = 0;for(int i = 1; i<=m; ++i) {scanf("%s",col);mp[col] = i;//if(mp.find(col) == mp.end()) mp[col] = ++top;}for(int i = 1; i<=n; i++) {scanf("%d%s",&tm,col);time[mp[col]][++num[mp[col]]] = tm;sum[mp[col]] += tm;}int ans = 0;for(int k = 1; k<=m; k++) {memset(dp,0,sizeof(dp));for(int i = 1; i<=num[k]; i++) {for(int j = sum[k]>>1; j>=time[k][i]; --j) {dp[j] = max(dp[j],dp[j-time[k][i]] + time[k][i]);}}ans +=(sum[k] - dp[sum[k]>>1]);}printf("%d\n",ans); }return 0 ;
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/439637.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

java多线程同步synchronized——对象监视器

1、synchronized关键字的作用域有二种&#xff1a; 1&#xff09;是某个对象实例内&#xff0c;synchronized aMethod(){}可以防止多个线程同时访问这个对象的synchronized方法&#xff08;如果一个对象有多个synchronized方法&#xff0c;只要一个线程访问了其中的一个synchro…

Coursera自动驾驶课程第14讲:Linear and Nonlinear Kalman Filters

在上一讲《Coursera自动驾驶课程第13讲&#xff1a;Least Squares》我们学习了最小二乘法相关知识。 本讲我们将学习20世纪最著名的一个算法&#xff1a;卡尔曼滤波。具体包括线性卡尔曼滤波&#xff08;KF&#xff09;&#xff0c;扩展卡尔曼滤波(EKF)&#xff0c;误差状态卡…

☆【UVA - 624 】CD(dp + 0-1背包 + 记录路径)

题干&#xff1a; You have a long drive by car ahead. You have a tape recorder, but unfortunately your best music is on CDs. You need to have it on tapes so the problem to solve is: you have a tape N minutes long. How to choose tracks from CD to get most o…

详解两阶段3D目标检测网络 Voxel R-CNN:Towards High Performance Voxel-based 3D Object Detection

本文介绍一篇两阶段的3D目标检测网络&#xff1a;Voxel R-CNN&#xff0c;论文已收录于AAAI 2021。 这里重点是理解本文提出的 Voxel RoI pooling。 论文链接为&#xff1a;https://arxiv.org/pdf/2012.15712.pdf 项目链接为&#xff1a;https://github.com/djiajunustc/Voxe…

java容器类1:Collection,List,ArrayList,LinkedList深入解读

1、 Iterable 与 Iterator Iterable 是个接口&#xff0c;实现此接口使集合对象可以通过迭代器遍历自身元素. public interface Iterable<T> 修饰符和返回值方法名描述Iterator<T>iterator()返回一个内部元素为T类型的迭代器default voidforEach(Consumer<?…

【POJ - 1050】To the Max (dp)

题干&#xff1a; Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-array of size 1*1 or greater located within the whole array. The sum of a rectangle is the sum of all the elements in that rectangle. I…

无限场景开放式仿真器 PGDrive:Improving the Generalization of End-to-End Driving through Procedural Generation

本文介绍一个拥有无限场景开放式驾驶仿真器&#xff1a;PGDrive&#xff0c;通过 Procedural Generation 技术可以生成无限多的驾驶场景&#xff0c;由香港中文大学周博磊团队开发。 论文地址&#xff1a;https://arxiv.org/pdf/2012.13681.pdf 项目地址&#xff1a;https://…

java容器类2:Map及HashMap深入解读

Java的编程过程中经常会和Map打交道&#xff0c;现在我们来一起了解一下Map的底层实现&#xff0c;其中的思想结构对我们平时接口设计和编程也有一定借鉴作用。(以下接口分析都是以jdk1.8源码为参考依据) 1. Map An object that maps keys to values. A map cannot contain du…

两阶段3D目标检测网络 SIENet: Spatial Information Enhancement Network for 3D Object Detection from Point Cloud

本文介绍一篇两阶段的3D目标检测网络&#xff1a;SIENet。 这里重点是理解本文提出的 Hybrid-Paradigm Region Proposal Network 和 Spatial Information Enhancement module。 论文链接为&#xff1a;https://arxiv.org/abs/2103.15396 项目链接为&#xff1a;https://githu…

java容器类3:set/HastSet/MapSet深入解读

介绍 Set&#xff1a;集合&#xff0c;是一个不包含重复数据的集合。&#xff08;A collection that contains no duplicate elements. &#xff09; set中最多包含一个null元素&#xff0c;否者包含了两个相同的元素&#xff0c;不符合定义。 上一篇学习了Java中的容器类的一…

Bandit算法原理及Python实战

目录 1&#xff09;什么是Bandit算法 为选择而生。 Bandit算法与推荐系统 怎么选择Bandit算法&#xff1f; 2)常用Bandit算法 Thompson sampling算法 UCB算法 Epsilon-Greedy算法 Greedy算法 3&#xff09;Bandit算法Python实战 参考资料&#xff1a; 推荐系统里面有…

*【 POJ - 1007 】DNA Sorting(枚举,类似三元组找第二元问题)

题干&#xff1a; One measure of unsortedness in a sequence is the number of pairs of entries that are out of order with respect to each other. For instance, in the letter sequence DAABEC, this measure is 5, since D is greater than four letters to its righ…

ava容器类4:Queue深入解读

Collection的其它两大分支&#xff1a;List和Set在前面已近分析过&#xff0c;这篇来分析一下Queue的底层实现。 前三篇关于Java容器类的文章&#xff1a; java容器类1&#xff1a;Collection,List,ArrayList,LinkedList深入解读 java容器类2&#xff1a;Map及HashMap深入解…

Waymo离线点云序列3D物体检测网络 (3D Auto Labeling): Offboard 3D Object Detection from Point Cloud Sequences

本文介绍一篇Waymo基于点云序列的3D物体检测网络&#xff1a;3D Auto Labeling&#xff0c;论文已收录于CVPR 2021。 这里重点是理解本文提出的 Object-centric Auto Labeling。 论文链接为&#xff1a;https://arxiv.org/abs/2103.05073 2021-09-02补充&#xff1a;本文作者…

【OpenJ_Bailian - 2711 】 合唱队形(dp,枚举中间顶点)

题干&#xff1a; N位同学站成一排&#xff0c;音乐老师要请其中的(N-K)位同学出列&#xff0c;使得剩下的K位同学不交换位置就能排成合唱队形。 合唱队形是指这样的一种队形&#xff1a;设K位同学从左到右依次编号为1, 2, …, K&#xff0c;他们的身高分别为T1, T2, …, TK&…

Waymo自动驾驶数据集介绍与使用教程

本文将对Waymo自动驾驶数据集&#xff08;Waymo Open Dataset&#xff09;进行介绍。 论文链接为&#xff1a;https://arxiv.org/abs/1912.04838v7 项目链接为&#xff1a;https://github.com/waymo-research/waymo-open-dataset 数据集链接为&#xff1a;https://waymo.com…

Java 并发基础——线程安全性

线程安全&#xff1a;多个线程访问某个类时&#xff0c;不管运行时环境采用何种调度方式或者这些线程将如何交替执行&#xff0c;并且在主调代码中不需要任何额外的同步或协调&#xff0c;这个类都能表现出正确的行为&#xff0c;那么久称这个类是线程安全的。 在线程安全类中封…

详解一阶段3D物体检测网络 SE-SSD: Self-Ensembling Single-Stage Object Detector From Point Cloud

本文介绍一篇一阶段的3D物体检测网络&#xff1a;SE-SSD&#xff0c;论文已收录于 CVPR 2021。 这里重点是理解本文提出的 Consistency Loss 、Orientation-Aware Distance-IoU Loss、Shape-Aware Data Augmentation。 论文链接为&#xff1a;https://arxiv.org/pdf/2104.0980…

【POJ - 3744】Scout YYF I(概率dp,矩阵快速幂优化dp)

题干&#xff1a; 题目大意&#xff1a; 在一条不满地雷的路上&#xff08;无限长&#xff09;&#xff0c;你现在的起点在1处。在N个点处布有地雷&#xff0c;1<N<10。地雷点的可能坐标范围&#xff1a;[1,100000000]. 每次前进p的概率前进一步&#xff0c;1-p的概率…

详解3D点云分割网络 Cylindrical and Asymmetrical 3D Convolution Networksfor LiDAR Segmentation

本文介绍一篇3D点云分割网络&#xff1a;Cylinder3D&#xff0c;论文已收录于 CVPR 2021。 这里重点是理解本文提出的 Cylindrical Partition 和 Asymmetrical 3D Convolution Network。 论文链接为&#xff1a;https://arxiv.org/pdf/2011.10033.pdf 项目链接为&#xff1a;…