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值是这个点不通过它的父亲节点最远可 ...
随机推荐
- 1.2V转5V稳压芯片,低功耗电路
PW5100具有将低输入电压0.7V-5V之间的范围,升压型,升压到5V的稳定电压输出. 可以使其镍氢电池1.2V稳定输出5V的1.2V转5V芯片. PW5100具有极低的输入静态功耗,1.2V时,应 ...
- Q-Q图原理详解及Python实现
[导读]在之前的<数据挖掘概念与技术 第2章>的文章中我们介绍了Q-Q图的概念,并且通过调用现成的python函数, 画出了Q-Q图, 验证了Q-Q图的两个主要作用,1. 检验一列数据是否 ...
- 开心!再也不用担心 IntelliJ IDEA 试用过期了
背景 前段时间 Review 团队小伙伴代码,发现当他把鼠标挪到一个方法上时,就自动显示了该方法的所有注释信息,像下图这样,他和我用的 IDE 都是 IntelliJ IDEA. 而我还按古老的方式, ...
- Navicat 创建mysql存过、定时执行存过
创建存过: 使用Navicat for MySQL工具创建存储过程步骤: 1. 新建函数(选择函数标签 -> 点击新建函数): 2.输入函数的参数个数.参数名.参数类型等: 3.编写存储过程: ...
- .net core 不同地区时间相互转换
.net core 不同地区时间相互转换 //韩国时间转换成当前时间 //value=需要转换的时间 //Korea Standard Tim 韩国时间 //China Standard Time 中 ...
- 控制反转 依赖注入 main函数
通过依赖注入.服务定位实现控制反转 Go kit - Frequently asked questions https://gokit.io/faq/ Dependency Injection - W ...
- loj10173
炮兵阵地 司令部的将军们打算在 N×M 的网格地图上部署他们的炮兵部队.一个 N×M的地图由 N 行 M 列组成,地图的每一格可能是山地(用 H 表示),也可能是平原(用 P表示),如下图.在每一格平 ...
- Language Guide (proto3) | proto3 语言指南(十一)包
Packages - 包 可以向.proto文件中添加可选的package明符,以防止协议消息类型之间的名称冲突. package foo.bar; message Open { ... } 然后你可 ...
- C# 给Word不同页面设置不同背景
给Word文档设置背景时,通常只能针对整篇文档设置统一的背景,如果需要对某些页面单独设置背景,则需要通过另外的方式来实现.本文通过C# 程序代码演示如何来实现.并附VB.NET代码作参考. 思路:通过 ...
- SpringCloud配置中心实战
SpringCloud配置中心实战 1.统一配置中心(Config) 1.1 Spring项目配置加载顺序 1.2 配置规则详解 1.3 Git仓库配置 1.3.1 使用占位符 1.3.2 模式匹配 ...