C1475D Cleaning the Phone 题解

文章目录

  • C1475D Cleaning the Phone 题解
  • Cleaning the Phone
    • 题面翻译
    • 题目描述
    • 输入格式
    • 输出格式
    • 样例 #1
      • 样例输入 #1
      • 样例输出 #1
    • 提示
    • 算法:贪心
    • 代码:

C1475D Cleaning the Phone 题解

link

Cleaning the Phone

题面翻译

题目大意:

n n n 个物品和一个最低价值 m m m ,每一个物品有一个价值 a i a_i ai 和 体积 b i b_i bi 体积只有可能为 1 1 1 2 2 2

你需要选出几个物品,使得它们的价值和大于等于 m m m 且使体积最小。

T T T组询问。

数据范围:

1 ≤ t ≤ 1 0 4 1 \leq t \leq 10^4 1t104 1 ≤ n ≤ 2 ⋅ 1 0 5 1 \leq n \leq 2 \cdot 10^5 1n2105 1 ≤ a i ≤ 1 0 9 1 \leq a_i \leq 10^9 1ai109 1 ≤ b i ≤ 2 1 \leq b_i \leq 2 1bi2

保证 ∑ n ≤ 2 ⋅ 1 0 5 \sum n \leq 2 \cdot 10^5 n2105

题目描述

Polycarp often uses his smartphone. He has already installed n n n applications on it. Application with number i i i takes up a i a_i ai units of memory.

Polycarp wants to free at least m m m units of memory (by removing some applications).

Of course, some applications are more important to Polycarp than others. He came up with the following scoring system — he assigned an integer b i b_i bi to each application:

  • b i = 1 b_i = 1 bi=1 — regular application;
  • b i = 2 b_i = 2 bi=2 — important application.

According to this rating system, his phone has b 1 + b 2 + … + b n b_1 + b_2 + \ldots + b_n b1+b2++bn convenience points.

Polycarp believes that if he removes applications with numbers i 1 , i 2 , … , i k i_1, i_2, \ldots, i_k i1,i2,,ik , then he will free a i 1 + a i 2 + … + a i k a_{i_1} + a_{i_2} + \ldots + a_{i_k} ai1+ai2++aik units of memory and lose b i 1 + b i 2 + … + b i k b_{i_1} + b_{i_2} + \ldots + b_{i_k} bi1+bi2++bik convenience points.

For example, if n = 5 n=5 n=5 , m = 7 m=7 m=7 , a = [ 5 , 3 , 2 , 1 , 4 ] a=[5, 3, 2, 1, 4] a=[5,3,2,1,4] , b = [ 2 , 1 , 1 , 2 , 1 ] b=[2, 1, 1, 2, 1] b=[2,1,1,2,1] , then Polycarp can uninstall the following application sets (not all options are listed below):

  • applications with numbers 1 , 4 1, 4 1,4 and 5 5 5 . In this case, it will free a 1 + a 4 + a 5 = 10 a_1+a_4+a_5=10 a1+a4+a5=10 units of memory and lose b 1 + b 4 + b 5 = 5 b_1+b_4+b_5=5 b1+b4+b5=5 convenience points;
  • applications with numbers 1 1 1 and 3 3 3 . In this case, it will free a 1 + a 3 = 7 a_1+a_3=7 a1+a3=7 units of memory and lose b 1 + b 3 = 3 b_1+b_3=3 b1+b3=3 convenience points.
  • applications with numbers 2 2 2 and 5 5 5 . In this case, it will free a 2 + a 5 = 7 a_2+a_5=7 a2+a5=7 memory units and lose b 2 + b 5 = 2 b_2+b_5=2 b2+b5=2 convenience points.

Help Polycarp, choose a set of applications, such that if removing them will free at least m m m units of memory and lose the minimum number of convenience points, or indicate that such a set does not exist.

输入格式

The first line contains one integer t t t ( 1 ≤ t ≤ 1 0 4 1 \le t \le 10^4 1t104 ) — the number of test cases. Then t t t test cases follow.

The first line of each test case contains two integers n n n and m m m ( 1 ≤ n ≤ 2 ⋅ 1 0 5 1 \le n \le 2 \cdot 10^5 1n2105 , 1 ≤ m ≤ 1 0 9 1 \le m \le 10^9 1m109 ) — the number of applications on Polycarp’s phone and the number of memory units to be freed.

The second line of each test case contains n n n integers a 1 , a 2 , … , a n a_1, a_2, \ldots, a_n a1,a2,,an ( 1 ≤ a i ≤ 1 0 9 1 \le a_i \le 10^9 1ai109 ) — the number of memory units used by applications.

The third line of each test case contains n n n integers b 1 , b 2 , … , b n b_1, b_2, \ldots, b_n b1,b2,,bn ( 1 ≤ b i ≤ 2 1 \le b_i \le 2 1bi2 ) — the convenience points of each application.

It is guaranteed that the sum of n n n over all test cases does not exceed 2 ⋅ 1 0 5 2 \cdot 10^5 2105 .

输出格式

For each test case, output on a separate line:

  • -1, if there is no set of applications, removing which will free at least m m m units of memory;
  • the minimum number of convenience points that Polycarp will lose if such a set exists.

样例 #1

样例输入 #1

5
5 7
5 3 2 1 4
2 1 1 2 1
1 3
2
1
5 10
2 3 2 3 2
1 2 1 2 1
4 10
5 1 3 4
1 2 1 2
4 5
3 2 1 2
2 1 2 1

样例输出 #1

2
-1
6
4
3

提示

In the first test case, it is optimal to remove applications with numbers 2 2 2 and 5 5 5 , freeing 7 7 7 units of memory. b 2 + b 5 = 2 b_2+b_5=2 b2+b5=2 .

In the second test case, by removing the only application, Polycarp will be able to clear only 2 2 2 of memory units out of the 3 3 3 needed.

In the third test case, it is optimal to remove applications with numbers 1 1 1 , 2 2 2 , 3 3 3 and 4 4 4 , freeing 10 10 10 units of memory. b 1 + b 2 + b 3 + b 4 = 6 b_1+b_2+b_3+b_4=6 b1+b2+b3+b4=6 .

In the fourth test case, it is optimal to remove applications with numbers 1 1 1 , 3 3 3 and 4 4 4 , freeing 12 12 12 units of memory. b 1 + b 3 + b 4 = 4 b_1+b_3+b_4=4 b1+b3+b4=4 .

In the fifth test case, it is optimal to remove applications with numbers 1 1 1 and 2 2 2 , freeing 5 5 5 units of memory. b 1 + b 2 = 3 b_1+b_2=3 b1+b2=3 .

算法:贪心

注意: 1 ≤ m ≤ 1 0 9 1≤m≤10^9 1m109

动态规划肯定超时了,就往贪心方面去想。

又注意到 b b b 的取值只能为 1 1 1 2 2 2,比较特殊,就从中入手。

当总价值 < m <m <m 时,肯定不成立,直接输出。

接下来贪心:

因为 1 + 1 = 2 1+1=2 1+1=2,所以我们可以通过两个体积为 1 1 1 的物品与一个体积为 2 2 2 的物品(总体积一样)比较价值大小来取。

因此输入时应该根据体积来分别保存到两个数组中,并且排序(从大到小)。之后就可以按照以上步骤来贪心啦~

代码:

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const ll N=2e5+10;
ll T,n,m,a[N],b,t1,t2,q1[N],q2[N],ct,ans,h1,h2;
bool cmp(ll l,ll r){return l>r;
}
int main(){ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);cin>>T;while(T--){cin>>n>>m;for(int i=1;i<=n;i++) cin>>a[i];t1=t2=ct=ans=0,h1=h2=1;for(int i=1;i<=n;i++){cin>>b;if(b==1) q1[++t1]=a[i];else q2[++t2]=a[i];}sort(q1+1,q1+t1+1,cmp);sort(q2+1,q2+t2+1,cmp);while(ct<m){//贪心取最大值if(!q1[h1]&&!q2[h2]){ans=-1;break;}//q1和q2都取完了,总价值还没达到mif(ct+q1[h1]>=m){ans++;break;}//取q1[h1]后达到if(q1[h1]+q1[h1+1]>=q2[h2]) ct+=q1[h1++],ans++;//取q1else ct+=q2[h2++],ans+=2;//取q2}cout<<ans<<"\n";for(int i=1;i<=n;i++) q1[i]=q2[i]=0;}return 0;
}

感谢大家的支持~

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

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

相关文章

【学习iOS高质量开发】——协议与分类

文章目录 一、通过委托与数据源协议进行对象间通信1.委托模式2.要点 二、将类的实现代码分散到便于管理的数个分类之中1.如何实现2.要点 三、总是为第三方类的分类名称加前缀1.为什么总是为第三方类的分类名称加前缀2.要点 三、勿在分类中声明属性1.勿在分类中声明属性的原因2.…

Android进阶(二十九) 走近 IntentFilter

文章目录 一、什么是IntentFilter &#xff1f;二、IntentFilter 如何过滤隐式意图&#xff1f;2.1 动作测试2.2 类别测试2.3 数据测试 一、什么是IntentFilter &#xff1f; 如果一个 Intent 请求在一片数据上执行一个动作&#xff0c; Android 如何知道哪个应用程序&#xf…

网页数据的解析提取(XPath的使用----lxml库详解)

在提取网页信息时&#xff0c;最基础的方法是使用正则表达式&#xff0c;但过程比较烦琐且容易出错。对于网页节点来说&#xff0c;可以定义id、class或其他属性&#xff0c;而且节点之间还有层次关系&#xff0c;在网页中可以通过XPath或CSS选择器来定位一个或多个节点。那么&…

Maven管理项目,本地仓库有对应的jar包,但还是报找不到

文章目录 业务场景错误提示分析过程解决办法 业务场景 settings.xml种配置了私服&#xff0c;但是有些依赖私服上没有&#xff0c;通过同事拷贝过来的。但是用maven打包时报红了。 错误提示 Idea Maven错误&#xff1a;was cached in the local repository, resolution will…

RecycleView结合ItemTouchHelper实现拖动排序

最近项目中需要实现对某一类条目进行拖动排序功能&#xff0c;实现技术方案就是利用ItemTouchHelper绑定RecyclerView、ItemTouchHelper.Callback来实现UI更新&#xff0c;并且实现动态控制是否开启拖动功能。其中&#xff0c;ItemTouchHelper是Google在androidx包中添加的&…

int128的实现(基本完成)

虽然有一个声明叫_int128但是这并不是C标准&#xff1a; long long 不够用&#xff1f;详解 __int128 - FReQuenter - 博客园 (cnblogs.com) 网络上去找int128的另类实现方法&#xff0c;发现几乎都是在介绍_int128的 然后我就自己想了个办法&#xff0c;当时还没学C&#xf…

Spring Boot中实现列表数据导出为Excel文件

点击下载《Spring Boot中实现列表数据导出为Excel文件》 1. 前言 本文将详细介绍在Spring Boot框架中如何将列表数据导出为Excel文件。我们将通过Apache POI库来实现这一功能&#xff0c;并解释其背后的原理、提供完整的流程和步骤&#xff0c;以及带有详细注释的代码示例。最…

关于设备连接有人云的使用及modbus rtu协议,服务器端TCP调试设置

有人云调试 调试过程问题1. 关于modbus rtu协议,实质上有三种modbus基本原理modbus 格式2. 关于modbus crc16通信校验3. 关于在ubuntu阿里云服务器端,监听网络数据之调试mNetAssist之前的一个项目,再拿出来回顾下。 调试过程 先 要在有人云,用手机号注册一个服务账号,官网显…

家的情感记忆:如何用壁纸讲述你的墙故事?

1、方小童在线工具集 网址&#xff1a; 方小童 该网站是一款在线工具集合的网站&#xff0c;目前包含PDF文件在线转换、随机生成美女图片、精美壁纸、电子书搜索等功能&#xff0c;喜欢的可以赶紧去试试&#xff01;

HarmonyOS—使用预览器查看应用/服务效果

DevEco Studio为开发者提供了UI界面预览功能&#xff0c;可以查看应用/服务的UI界面效果&#xff0c;方便开发者随时调整界面UI布局。预览器支持布局代码的实时预览&#xff0c;只需要将开发的源代码进行保存&#xff0c;就可以通过预览器实时查看应用/服务运行效果&#xff0c…

探索分布式强一致性奥秘:Paxos共识算法的精妙之旅

提到分布式算法&#xff0c;就不得不提 Paxos 算法&#xff0c;在过去几十年里&#xff0c;它基本上是分布式共识的代名词&#xff0c;因为当前一批常用的共识算法都是基于它改进的。比如&#xff0c;Fast Paxos 算法、Cheap Paxos、Raft 算法等。 由莱斯利兰伯特&#xff08;L…

Spring6学习技术|AOP

学习材料 尚硅谷Spring零基础入门到进阶&#xff0c;一套搞定spring6全套视频教程&#xff08;源码级讲解&#xff09; AOP AOP&#xff08;Aspect Oriented Programming&#xff09;是一种设计思想&#xff0c;是软件设计领域中的面向切面编程&#xff0c;它是面向对象编程的…

AIDL的工作原理与使用示例 跨进程通信 远程方法调用RPC

AIDL的介绍与使用 AIDL&#xff08;Android Interface Definition Language&#xff09;是Android中用于定义客户端和服务端之间通信接口的一种接口定义语言。它允许你定义客户端和服务的通信协议&#xff0c;用于在不同的进程间或同一进程的不同组件间进行数据传递。AIDL通过…

深入探讨YUV图像处理:理论原理与OpenCV实践

文章目录 导言YUV模型的原理使用OpenCV处理YUV图像1. 读取YUV图像2. 将YUV图像转换为RGB图像3. 将RGB图像转换为YUV图像 结语 导言 导言&#xff1a; 在图像处理领域&#xff0c;YUV色彩模型因其对亮度和色度的分离而被广泛使用&#xff0c;特别在视频编码和实时通信中发挥了巨…

算法项目(3)—— 从零实现KNN、朴素贝叶斯垃圾邮件分类

本文包含什么? 项目运行的方式项目代码,自己实现KNN算法以及朴素贝叶斯算法.代码介绍运行有问题? csdn上后台随时售后.项目说明 本文主要是自己从0实现KNN算法以及朴素贝叶斯算法.然后使用英文垃圾邮件数据集进行垃圾邮件分类.常见的代码均调用sklearn库来实现,本文自行实现…

AI推介-大语言模型LLMs论文速览(arXiv方向):2024.01.01-2024.01.10

1.Pre-trained Large Language Models for Financial Sentiment Analysis 标题:用于金融情感分析的预训练大型语言模型 author:Wei Luo, Dihong Gong date Time:2024-01-10 paper pdf:http://arxiv.org/pdf/2401.05215v1 摘要&#xff1a; 金融情感分析是指将金融文本内容划分…

从零学习Linux操作系统第二十八部分 shell脚本中的执行流控制

一、什么是执行流、循环执行流 执行流&#xff1a;改变执行顺序&#xff0c;使之更方便操作者 循环执行流&#xff1a;根据脚本是执行流再某一个状态下进行循环执行&#xff0c;进行多次执行后再往下走&#xff08;for语句&#xff09; for语句 作用 为循环执行动作 for语句…

opencv判断灰化情况

目的 先说说理论&#xff1a; 在图像处理中&#xff0c;用RGB三个分量&#xff08;R&#xff1a;Red&#xff0c;G&#xff1a;Green&#xff0c;B&#xff1a;Blue&#xff09;&#xff0c;即红、绿、蓝三原色来表示真彩色&#xff0c;R分量&#xff0c;G分量&#xff0c;B分…

LeetCode LCR 055.二叉搜索树迭代器

实现一个二叉搜索树迭代器类BSTIterator &#xff0c;表示一个按中序遍历二叉搜索树&#xff08;BST&#xff09;的迭代器&#xff1a; BSTIterator(TreeNode root) 初始化 BSTIterator 类的一个对象。BST 的根节点 root 会作为构造函数的一部分给出。指针应初始化为一个不存在…

vue实现拖拽(vuedraggable)

实现效果: 左侧往右侧拖动&#xff0c;右侧列表可以进行拖拽排序。 安装引用&#xff1a; npm install vuedraggable import draggable from vuedraggable 使用&#xff1a; data数据&#xff1a; componentList: [{groupName: 考试题型,children: [{componentType: danxua…