百度之星资格赛 J题 百度的新大厦

题意:中文题,不解释

思路:直接解方程就可以了。设电梯一次上升a,一次下降b,总共按按钮n次,设按上升按钮按了x次,则最后电梯的位置是a*x-b*(n-x),求满足该式的最小正数值即可。总共有2000个电梯,枚举每个电梯,找最小值即可。

ac代码:

#include <iostream>
#include <cstdio>
#include <string.h>

using namespace std;

struct house{
	int up,down;
}hh[2012];

int fun(int x,int y,int n){
	int num = (y*n) / (x+y);
	int mod = (y*n) % (x+y);
	if(mod == 0){
	  return x+y;
	}
	else{
	  int ans = (num+1) * (x+y) - (y*n);
	  return ans;
	}
}

int main(){
	int n,m;
	while(~scanf("%d%d",&n,&m)){
		int x;
		int ans = 100000000;
		for(int i = 0;i < m;++i){
			scanf("%d%d",&hh[i].up,&hh[i].down);
			x = fun(hh[i].up,hh[i].down,n);
			if(x<ans)
				ans = x;
		}
		printf("%d\n",ans);
	}
	return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值