A. Gamer Hemose1000 / 贪心

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Gamer Hemose1000 / 贪心相关的知识,希望对你有一定的参考价值。


https://codeforces.com/contest/1592/problem/A
找最高的两把武器轮流打即可。

#include<bits/stdc++.h>
using namespace std;
const int N=1e5*2+10;
int t,n,m,a[N];
void solve()
{
	cin>>n>>m;
	for(int i=0;i<n;i++) cin>>a[i];
	sort(a,a+n);
	int res=m/(a[n-1]+a[n-2])*2;
	m-=res/2*(a[n-1]+a[n-2]);
	if(m>0) m-=a[n-1],res++;
	if(m>0) m-=a[n-2],res++;
	cout<<res<<endl;
}
int main(void)
{
	cin>>t;
	while(t--) solve();
	return 0;
}

以上是关于A. Gamer Hemose1000 / 贪心的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces - 1592A Gamer Hemose排序

A. Dragons 1000 / 贪心

A. Buying Torches1000 / 贪心

A. Road To Zero1000 / 贪心

A. Berland Poker1000 / 贪心 思维

A. K-divisible Sum 1000 / 贪心