CodeForces 1061A 贪心 水题

http://codeforces.com/problemset/problem/1061/A

You have unlimited number of coins with values 1,2,…,n.You want to select some set of coins having the total value of S .

It is allowed to have multiple coins with the same value in the set. What is the minimum number of coins required to get sum S ?

Input

The only line of the input contains two integers nn and S (1≤n≤100000, 1≤S≤10^9 )

Output

Print exactly one integer — the minimum number of coins required to obtain sum S .

Examples

Input

Copy

5 11

Output

Copy

3

Input

Copy

6 16

Output

Copy

3

Note

In the first example, some of the possible ways to get sum 11 with 3 coins are:

  • (3,4,4)(3,4,4)
  • (2,4,5)(2,4,5)
  • (1,5,5)(1,5,5)
  • (3,3,5)(3,3,5)

It is impossible to get sum 11 with less than 3 coins.

In the second example, some of the possible ways to get sum 16 with 3 coins are:

  • (5,5,6)(5,5,6)
  • (4,6,6)(4,6,6)

It is impossible to get sum 16 with less than 3 coins.

题目大意:你有无限个硬币,它们的价值分别为从1到n,给你一个数S,问凑够S的最小硬币数是多少。

思路:贪心。

#include<iostream>
#include<cstdio>
#include<cmath>
#include<set>
#include<algorithm>
#include<iterator>
#define INF 0x3f3f3f3f
using namespace std;

int main()
{
	int n,s;
	scanf("%d%d",&n,&s);
	if(s%n==0)
		printf("%d\n",s/n);
	else
		printf("%d\n",s/n+1);
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值