codeforce 3C
2 seconds
64 megabytes
standard input
standard output
A group of tourists is going to kayak and catamaran tour. A rented lorry has arrived to the boat depot to take kayaks and catamarans to the point of departure. It's known that all kayaks are of the same size (and each of them occupies the space of 1 cubic metre), and all catamarans are of the same size, but two times bigger than kayaks (and occupy the space of 2 cubic metres).
Each waterborne vehicle has a particular carrying capacity, and it should be noted that waterborne vehicles that look the same can have different carrying capacities. Knowing the truck body volume and the list of waterborne vehicles in the boat depot (for each one its type and carrying capacity are known), find out such set of vehicles that can be taken in the lorry, and that has the maximum total carrying capacity. The truck body volume of the lorry can be used effectively, that is to say you can always put into the lorry a waterborne vehicle that occupies the space not exceeding the free space left in the truck body.
The first line contains a pair of integer numbers n and v (1 ≤ n ≤ 105; 1 ≤ v ≤ 109), where n is the number of waterborne vehicles in the boat depot, and v is the truck body volume of the lorry in cubic metres. The following n lines contain the information about the waterborne vehicles, that is a pair of numbers ti, pi (1 ≤ ti ≤ 2; 1 ≤ pi ≤ 104), where ti is the vehicle type (1 – a kayak, 2 – a catamaran), and pi is its carrying capacity. The waterborne vehicles are enumerated in order of their appearance in the input file.
In the first line print the maximum possible carrying capacity of the set. In the second line print a string consisting of the numbers of the vehicles that make the optimal set. If the answer is not unique, print any of them.
3 2
1 2
2 7
1 3
7
2
解题思路:设t=1的载具为a,t=2的载具为b。
将a和b的两种载具存储在两个数组nua,nub里面,长度分别为lea,leb,按p从大到小排序。
如果v是奇数则减一(如果lea不为0,从nua中选出第一个,我是为了方便后面两个a与一个b的比较)
否则进入循环,将两个a与一个b的元素进行比较。
最后如果还剩下1v,则补上一个a。
(代码写的好乱啊)
这题有个数据坑了我好久。
3 1
2 1
2 2
2 3
1 #include <cstdio>
2 #include <cstring>
3 #include <algorithm>
4 #include <iostream>
5 #include <cmath>
6 using namespace std;
7 const int maxn = 100005;
8 struct nod {
9 int num;
10 int p;
11 }nua[maxn],nub[maxn];
12 bool cmp(nod a,nod b) {
13 if(a.p>b.p) return 1;
14 return 0;
15 }
16 int pu[maxn];
17 string s;
18 int main() {
19 ios::sync_with_stdio(false);
20 int n,v;
21 cin>>n>>v;
22 int lea=0,leb=0,cnt=0;
23 for(int i=1;i<=n;i++) {
24 int a,b;
25 cin>>a>>b;
26 if(a==1) {
27 nua[++lea].p=b;
28 nua[lea].num=i;
29 }
30 else {
31 nub[++leb].p=b;
32 nub[leb].num=i;
33 }
34 }
35 sort(nua+1,nua+lea+1,cmp);
36 sort(nub+1,nub+leb+1,cmp);
37 int i=1,j=1;
38 int ans=0;
39 if(lea && (v&1)) {
40 --v;
41 pu[++cnt]=nua[i].num;
42 ans+=nua[i++].p;
43 // cout<<1<<endl;
44 }
45 // cout<<v<<endl<<endl;;
46 while(i<=lea&&v>0) {
47 int u=nua[i].p+nua[i+1].p;
48 if(u>=nub[j].p) {
49 ans+=u;
50 pu[++cnt]=nua[i].num; i++;
51 if(i<=lea) {
52 pu[++cnt]=nua[i].num;
53 i++;
54 }
55
56 }
57 else {
58 ans+=nub[j].p;
59 pu[++cnt]=nub[j].num;
60 // cout<<2<<endl;
61 j++;
62 }
63 v-=2;
64 }
65 while(j<=leb&&v>1) {
66 ans+=nub[j].p;
67 pu[++cnt]=nub[j].num;
68 j++;
69 v-=2;
70 }
71 cout<<ans<<endl;
72 for( i=1;i<=cnt;i++) cout<<pu[i]<<" ";
73 return 0;
74 }
因为上面我的思路太乱了,第二天我看了看别人的思路,重做此题。
新思路:设t=1的载具为a,t=2的载具为b.依然分成nua,nub两组,按p从大到小排序。从大到小,能放多少b就放多少,如果v还有剩余,就放a。
然后把放进去的b载具从小到大遍历,每一个b与每两个a的p的和作比较,如果两a之和大于b,就更新此处。
思路很简单,代码也很好模拟。
1 #include <cstdio>
2 #include <cstring>
3 #include <algorithm>
4 #include <iostream>
5 #include <cmath>
6 using namespace std;
7 const int maxn = 100005;
8 struct nod {
9 int num;
10 int p;
11 }nua[maxn],nub[maxn];
12 bool cmp(nod a,nod b) {
13 if(a.p>b.p) return 1;
14 return 0;
15 }
16 int pu[maxn];
17 string s;
18 int main() {
19 ios::sync_with_stdio(false);
20 int n,v;
21 cin>>n>>v;
22 int lea=0,leb=0,cnt=0;
23 for(int i=1;i<=n;i++) {
24 int a,b;
25 cin>>a>>b;
26 if(a==1) {
27 nua[++lea].p=b;
28 nua[lea].num=i;
29 }
30 else {
31 nub[++leb].p=b;
32 nub[leb].num=i;
33 }
34 }
35 sort(nua+1,nua+lea+1,cmp);
36 sort(nub+1,nub+leb+1,cmp);
37
38 int i=1,j=1;
39 int ans=0;
40 while(j<=leb && v>=2) { //先存t=2的载具
41 v-=2;
42 j++;
43 }
44 while(i<=lea && v>=1) { //v有剩余,就存t=1
45 --v;
46 i++;
47 }
48 int l=0; //记录有哪些个b被取代
49 for(int k=j-1;k>=1;k--) { //放进去的b从小到大遍历
50 int u=nua[i].p+nua[i+1].p;
51 if(u>nub[k].p) { //每两个a与一个b比较
52 if(i+1<=lea) {
53 i+=2;
54 }
55 else {
56 ++i;
57 break;
58 }
59 ++l;
60 }
61 }
62 j-=l;
63 for(int k=1;k<j;k++) {
64 ans+=nub[k].p;
65 pu[++cnt]=nub[k].num;
66 }
67 for(int k=1;k<i;k++) {
68 ans+=nua[k].p;
69 pu[++cnt]=nua[k].num;
70 }
71 sort(pu+1,pu+cnt+1);
72 cout<<ans<<endl;
73 for(int i=1;i<=cnt;i++) {
74 cout<<pu[i]<<" ";
75 }
76 return 0;
77 }
codeforce 3C的更多相关文章
- Codeforce - Street Lamps
Bahosain is walking in a street of N blocks. Each block is either empty or has one lamp. If there is ...
- Codeforce Round #216 Div2
e,还是写一下这次的codeforce吧...庆祝这个月的开始,看自己有能,b到什么样! cf的第二题,脑抽的交了错两次后过了pretest然后system的挂了..脑子里还有自己要挂的感觉,果然回头 ...
- 华为3C抢购难度
上周小米2S降价到1299买了一个,今天突然想体验一下抢购红米和3C的难度.万一抢到了,拿到手机市场贵100块钱卖掉,然后可以请女神吃个饭~~~哈哈哈哈! 结果确实不怎么好抢.刚刚试了一下3C: 验证 ...
- 1.C#基础学习笔记3---C#字符串(转义符和内存存储无关)
技术qq交流群:JavaDream:251572072 教程下载,在线交流:创梦IT社区:www.credream.com ------------------------------------- ...
- Codeforce 水题报告(2)
又水了一发Codeforce ,这次继续发发题解顺便给自己PKUSC攒攒人品吧 CodeForces 438C:The Child and Polygon: 描述:给出一个多边形,求三角剖分的方案数( ...
- codeforce 375_2_b_c
codeforce 375_2 标签: 水题 好久没有打代码,竟然一场比赛两次卡在边界条件上....跪 b.题意很简单...纯模拟就可以了,开始忘记了当字符串结束的时候也要更新两个值,所以就错了 #i ...
- codeforce 367dev2_c dp
codeforce 367dev2_c dp 标签: dp 题意: 你可以通过反转任意字符串,使得所给的所有字符串排列顺序为字典序,每次反转都有一定的代价,问你最小的代价 题解:水水的dp...仔细想 ...
- 三维dp&codeforce 369_2_C
三维dp&codeforce 369_2_C 标签: dp codeforce 369_2_C 题意: 一排树,初始的时候有的有颜色,有的没有颜色,现在给没有颜色的树染色,给出n课树,用m种燃 ...
- 强连通分量&hdu_1269&Codeforce 369D
强连通分量 标签: 图论 算法介绍 还记得割点割边算法吗.回顾一下,tarjan算法,dfs过程中记录当前点的时间戳,并通过它的子节点的low值更新它的low,low值是这个点不通过它的父亲节点最远可 ...
随机推荐
- ABAP program lines are wider than the internal table
错误详细描述: An exception occurred that is explained in detail below.The exception, which is assigned to ...
- POJ1629:picnic planning
题目描述 矮人虽小却喜欢乘坐巨大的轿车,轿车大到可以装下无论多少矮人.某天,N(N≤20)个矮人打算到野外聚餐.为了 集中到聚餐地点,矮人A 有以下两种选择 1)开车到矮人B家中,留下自己的轿车在矮人 ...
- 低功耗降线性稳压器,24V转5V降压芯片
PW2330开发了一种高效率的同步降压DC-DC变换器3A输出电流.PW2330在4.5V到30V的宽输入电压范围内工作集成主开关和同步开关,具有非常低的RDS(ON)以最小化传导 损失.PW2330 ...
- Java运算符及包机制
Java中的运算符及包机制 算术运算符:+ - * / % ++ -- 赋值运算符:=,+=,-=,*=,/= 关系运算符:>,<,>=,<=,==,!=,instanceof ...
- 飞机大战(1)--添加logo和加载动画
注:以下代码都是用scratch 3.0版本编写 素材链接: 链接:https://pan.baidu.com/s/1sXqeZVuFgVTYT0OtqxXilw 提取码:1126 一.背景添加 导入 ...
- Vue之创建组件之配置路由!
Vue之创建组件之配置路由!== 第一步: 当然就是在我们的试图文件夹[views]新建一个文件夹比如home 在home文件夹下面新建一个文件index.vue 第二步:在router目录下做如下事 ...
- mysql查询数据库中是否存在某个字段
select table_name from information_schema.columns where table_schema = '库名' and column_name='字段名';
- centos7+python3+selenium+chrome
一.安装GUI图形化界面 (1)安装GUI图形化界面 yum groupinstall "GNOME Desktop" "Graphical Administration ...
- SSRF-Vulnerable-Lab靶场训练
参考文章 SSRF-Vulnerable-Lab tag: #SSRF Ref: 1.file_get_content.php 提取并显示指定文件内容的应用程序代码 在编程语言中,有一些函数可以获取本 ...
- List对象集合根据组合属性进行差集运算
背景 当List是一个基本数据类型的集合的时候,进行集合运算还比较方便,但是有这么一些业务场景,比如某个用户权限变化的列表,或者取数据的变化结果,当时有时候用笨方法多循环两次也是可以的,只不过代码 ...