博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cf D. Renting Bikes
阅读量:4965 次
发布时间:2019-06-12

本文共 1270 字,大约阅读时间需要 4 分钟。

http://codeforces.com/contest/363/problem/D

先对b和p排序,用二分求出可以租的车子的最大辆数,其中用mid以后的个人钱数去租前mid的价钱的车子。

1 #include 
2 #include
3 #include
4 #define LL __int64 5 #define N 200000 6 using namespace std; 7 int n,m; 8 LL a; 9 LL p[N],b[N];10 int max1;11 12 bool ok(int mid)13 {14 LL sum=0;15 for(int i=0; i
=p[i]) continue;18 else if(p[i]>b[n-mid+i])19 {20 sum+=(p[i]-b[n-mid+i]);21 }22 }23 if(sum>a) return false;24 return true;25 }26 27 int main()28 {29 while(scanf("%d%d%I64d",&n,&m,&a)!=EOF)30 {31 for(int i=0; i
>1;46 if(ok(mid))47 {48 l=mid+1;49 max1=max(max1,mid);50 }51 else52 {53 r=mid-1;54 }55 }56 if(max1==0)57 {58 printf("0 0\n");59 continue;60 }61 else62 {63 LL ans=0;64 for(int i=0; i
=ans)69 {70 printf("%d %d\n",max1,0);71 }72 else73 {74 printf("%d %I64d\n",max1,ans-a);75 }76 }77 }78 return 0;79 }
View Code

 

转载于:https://www.cnblogs.com/fanminghui/p/3945863.html

你可能感兴趣的文章
揭秘:黑客必备的Kali Linux是什么,有哪些弊端?
查看>>
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
MongoDB的简单使用
查看>>
hdfs 命令使用
查看>>
prometheus配置
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
java语法之final
查看>>
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>