Codeforces Round #107 (Div. 2) A(简单模拟)

本文探讨了在冬季聚会中如何合理利用软饮、柠檬和盐等资源,通过算法实现每名参与者都能享受最多数量的特制饮品。通过输入参数包括人数、软饮瓶数、每瓶容量、柠檬数量、切片数、盐克数以及个人需求量,算法计算出每位参与者最多可以享用的饮品数量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目:

A. Soft Drinking
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

This winter is so cold in Nvodsk! A group of n friends decided to buy k bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has l milliliters of the drink. Also they bought c limes and cut each of them into d slices. After that they found p grams of salt.

To make a toast, each friend needs nl milliliters of the drink, a slice of lime and np grams of salt. The friends want to make as many toasts as they can, provided they all drink the same amount. How many toasts can each friend make?

Input

The first and only line contains positive integers nklcdpnlnp, not exceeding 1000 and no less than 1. The numbers are separated by exactly one space.

Output

Print a single integer — the number of toasts each friend can make.

Sample test(s)
input
3 4 5 10 8 100 3 1
output
2
input
5 100 10 1 19 90 4 3
output
3
input
10 1000 1000 25 23 1 50 1
output
0
Note

A comment to the first sample:

Overall the friends have 4 * 5 = 20 milliliters of the drink, it is enough to make 20 / 3 = 6 toasts. The limes are enough for 10 * 8 = 80toasts and the salt is enough for 100 / 1 = 100 toasts. However, there are 3 friends in the group, so the answer is min(6, 80, 100) / 3 = 2.

题意分析:

题目大概就是n个人需要制作饮料并且尽可能的平均分配,他们有k瓶软饮料,每瓶有l毫升,c个柠檬每个能分成d片,还有p克盐。制作一瓶特制饮料需要nl毫升软饮料,一片柠檬和np克盐。不多说,水题,直接上代码。


代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <cstdlib>

using namespace std;


int main()
{
    int n,k,l,c,d,p,nl,np,ans2,ans1;
    while(scanf("%d",&n)!=EOF)
    {
        scanf("%d%d%d%d%d%d%d",&k,&l,&c,&d,&p,&nl,&np);
        ans1=min(k*l/nl/n,c*d/n);
        ans2=min(ans1,p/np/n);
        printf("%d\n",ans2);
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值