牛客寒训营2 A(炉石的题都做不出来,只能说明炉石玩的不行)

题目
题意: 起始有一点蓝,有n张攻击牌,消耗一点蓝造成一点伤害;m张回蓝牌,回复一点蓝。每次使用完一张牌,就会使得剩余所有攻击牌的伤害永久提升一点。比如先回了一点蓝,接下来连续攻击两次,造成伤害2 + 3 = 5.k次询问,判断能否恰好造成x点伤害
思路: Binary Search.首先可用的攻击牌是n = min(n,m+1),否则蓝不够。伤害最少是nn,平A接回蓝接平A接回蓝;伤害最多是 n * m+n(n+1)/2回蓝全用完接平A接平A。在此区间内的都能达到,在最少序列交换两个相邻平A和回蓝就能+1,直到交换至伤害最多的nm+n(n+1)/2。可以将攻击次数a带入n,求出每个区间。可以发现大部分区间都重叠,只有少数覆盖不到。
方法一: 二分攻击次数,首先保证左端点<=x,而且左端点要尽可能地大。可以二分出这个攻击次数,再判断该攻击次数的右端点是不是满足>=x即可。O(klog(x))
方法二: 进一步发现,当a>=4时,会发现上一个区间的右端点>=当前区间的左端点,也就是可以全覆盖。当b>=3时,[1,n
m+n*(n+1)/2]都能覆盖。当b<3时,有的值覆盖不到。只需要特判一下即可。O(k)
时间复杂度: O(k*log(x)) or O(k)
代码:

// Problem: 小沙的炉石
// Contest: NowCoder
// URL: https://ac.nowcoder.com/acm/contest/23477/A
// Memory Limit: 524288 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<complex>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<unordered_map>
#include<list>
#include<set>
#include<queue>
#include<stack>
#define OldTomato ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr)
#define fir(i,a,b) for(int i=a;i<=b;++i) 
#define mem(a,x) memset(a,x,sizeof(a))
#define p_ priority_queue
// round() 四舍五入 ceil() 向上取整 floor() 向下取整
// lower_bound(a.begin(),a.end(),tmp,greater<ll>()) 第一个小于等于的
// #define int long long //QAQ
using namespace std;
typedef complex<double> CP;
typedef pair<int,int> PII;
typedef long long ll;
// typedef __int128 it;
const double pi = acos(-1.0);
const int INF = 0x3f3f3f3f;
const ll inf = 1e18;
const int N = 2e5+10;
const int M = 1e6+10;
const int mod = 1e9+7;
const double eps = 1e-6;
inline int lowbit(int x){ return x&(-x);}
template<typename T>void write(T x)
{
    if(x<0)
    {
        putchar('-');
        x=-x;
    }
    if(x>9)
    {
        write(x/10);
    }
    putchar(x%10+'0');
}
template<typename T> void read(T &x)
{
    x = 0;char ch = getchar();ll f = 1;
    while(!isdigit(ch)){if(ch == '-')f*=-1;ch=getchar();}
    while(isdigit(ch)){x = x*10+ch-48;ch=getchar();}x*=f;
}
int n,m,k,T;
void solve()
{
   read(n); read(m);
   n = min(n,m+1);
   read(k);
   while(k--)
   {
   	 ll x; read(x);
   	 ll tmp = sqrt(x); //找平方<=x的最大值
   	 if(tmp > n) //最多就n了
   	 {
   	    tmp = n;
   	 }
   	 if(tmp * (2ll*m+tmp+1) / 2  >= x)
   	 {
   	 	puts("YES");
   	 }
   	 else puts("NO");
   }
}
signed main(void)
{  
   T = 1;
   // OldTomato; cin>>T;
   // read(T);
   while(T--)
   {
   	 solve();
   }
   return 0;
}

// Problem: 小沙的炉石
// Contest: NowCoder
// URL: https://ac.nowcoder.com/acm/contest/23477/A
// Memory Limit: 524288 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<complex>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<unordered_map>
#include<list>
#include<set>
#include<queue>
#include<stack>
#define OldTomato ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr)
#define fir(i,a,b) for(int i=a;i<=b;++i) 
#define mem(a,x) memset(a,x,sizeof(a))
#define p_ priority_queue
// round() 四舍五入 ceil() 向上取整 floor() 向下取整
// lower_bound(a.begin(),a.end(),tmp,greater<ll>()) 第一个小于等于的
// #define int long long //QAQ
using namespace std;
typedef complex<double> CP;
typedef pair<int,int> PII;
typedef long long ll;
// typedef __int128 it;
const double pi = acos(-1.0);
const int INF = 0x3f3f3f3f;
const ll inf = 1e18;
const int N = 2e5+10;
const int M = 1e6+10;
const int mod = 1e9+7;
const double eps = 1e-6;
inline int lowbit(int x){ return x&(-x);}
template<typename T>void write(T x)
{
    if(x<0)
    {
        putchar('-');
        x=-x;
    }
    if(x>9)
    {
        write(x/10);
    }
    putchar(x%10+'0');
}
template<typename T> void read(T &x)
{
    x = 0;char ch = getchar();ll f = 1;
    while(!isdigit(ch)){if(ch == '-')f*=-1;ch=getchar();}
    while(isdigit(ch)){x = x*10+ch-48;ch=getchar();}x*=f;
}
int n,m,k,T;
void solve()
{
   read(n); read(m);
   n = min(n,m+1);
   int l = 1;
   ll r = 1ll*n*m + 1ll*n*(n+1)/2;
   read(k);
   while(k--)
   {
   	 ll x; read(x);
    if(m >= 3) 
    {
   	   if(x >= l && x <= r) puts("YES");
   	   else puts("NO");
    }
    else 
    {
   	  if(m == 1 && x == 3)
   	  {
   	  	 puts("NO"); 	
   	  }
   	  else if(m == 2 && x == 8)
   	  {
   	  	puts("NO");
   	  }
   	  else 
   	  {
   	  	if(x >= l && x <= r) puts("YES");
   	    else puts("NO");
   	  }
    }
   }
}
signed main(void)
{  
   T = 1;
   // OldTomato; cin>>T;
   // read(T);
   while(T--)
   {
   	 solve();
   }
   return 0;
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值