C. Tavas and Karafs 二分查找+贪心

                                    C. Tavas and Karafs

 

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <cmath>
 5 #include <algorithm>
 6 #include <string>
 7 #include <vector>
 8 #include <set>
 9 #include <map>
10 #include <stack>
11 #include <queue>
12 #include <sstream>
13 #include <iomanip>
14 using namespace std;
15 typedef long long LL;
16 const int INF = 0x4fffffff;
17 const double EXP = 1e-5;
18 const int MS = 40005;
19 const int SIZE = 100005;
20 
21 int main()
22 {
23       LL A,B,n;
24       LL L,T,M;
25       cin>>A>>B>>n;
26       for(LL i=0;i<n;i++)
27       {
28             cin>>L>>T>>M;
29             LL minv=(L-1)*B+A;
30             if(T<minv)
31             {
32                   cout<<"-1"<<endl;
33                   continue;
34             }
35             LL R=(T-minv)/B;
36 
37            int tl=L;
38            int tr=L+R+1;
39            while((tr-tl)>1)        //二分查找用[a,b)使用方便,又不易出错。
40            {
41                  LL mid=(tr+tl)>>1;
42                  LL sum=(mid-L+1)*A+(mid+L-2)*(mid-L+1)/2*B;
43                  LL maxv=(mid-1)*B+A;
44 
45                  LL time=sum/M;
46                  if(sum%M!=0)
47                         time++;
48                  time=max(time,maxv);
49                  if(time<=T)
50                         tl=mid;
51                  else
52                         tr=mid;
53            }
54             cout<<tl<<endl;
55       }
56       return 0;
57 }

 

转载于:https://www.cnblogs.com/767355675hutaishi/p/4430137.html

二分贪心算法和浙江工业大学之间似乎没有直接的关联。二分贪心算法是一种综合了二分和贪心思想的算法,用于在解决问题时对数据进行二分划分,并在每一步选择中采取最优的贪心策略。而浙江工业大学是一所位于中国浙江省的工科大学。 引用和中提到的贪心算法是一种在问题求解中每一步都选择最优的策略,但得到的结果不一定是最优解,但是通常是相对近似最优解的结果。这种算法在某种意义上是局部最优解。 引用中提到的Dijkstra算法是一种基于贪心和广度优先搜索的算法,用于求解图中一个点到其他所有点的最短路径。该算法的时间复杂度为O(n^2)。 从以上内容来看,二分贪心算法和浙江工业大学之间并没有明显的联系。可能是问题描述不完整或者存在其他相关信息,导致无法直接回答与贪心算法和浙江工业大学有关的问题。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [常用十大算法 非递归二分查找、分治法、动态规划、贪心算法、回溯算法(骑士周游为例)、KMP、最小生成树算法...](https://blog.csdn.net/lonelysnowman/article/details/127493659)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* [6.二分+贪心](https://blog.csdn.net/qq_52008247/article/details/119151264)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值