zoukankan      html  css  js  c++  java
  • Educational Codeforces Round 9 A. Grandma Laura and Apples 水题

    A. Grandma Laura and Apples

    题目连接:

    http://www.codeforces.com/contest/632/problem/A

    Description

    Grandma Laura came to the market to sell some apples. During the day she sold all the apples she had. But grandma is old, so she forgot how many apples she had brought to the market.

    She precisely remembers she had n buyers and each of them bought exactly half of the apples she had at the moment of the purchase and also she gave a half of an apple to some of them as a gift (if the number of apples at the moment of purchase was odd), until she sold all the apples she had.

    So each buyer took some integral positive number of apples, but maybe he didn't pay for a half of an apple (if the number of apples at the moment of the purchase was odd).

    For each buyer grandma remembers if she gave a half of an apple as a gift or not. The cost of an apple is p (the number p is even).

    Print the total money grandma should have at the end of the day to check if some buyers cheated her.

    Input

    The first line contains two integers n and p (1 ≤ n ≤ 40, 2 ≤ p ≤ 1000) — the number of the buyers and the cost of one apple. It is guaranteed that the number p is even.

    The next n lines contains the description of buyers. Each buyer is described with the string half if he simply bought half of the apples and with the string halfplus if grandma also gave him a half of an apple as a gift.

    It is guaranteed that grandma has at least one apple at the start of the day and she has no apples at the end of the day.

    Output

    Print the only integer a — the total money grandma should have at the end of the day.

    Note that the answer can be too large, so you should use 64-bit integer type to store it. In C++ you can use the long long integer type and in Java you can use long integer type.

    Sample Input

    2 10
    half
    halfplus

    Sample Output

    15

    Hint

    题意

    有n个顾客买苹果,每个苹果p元

    half就是这个顾客买了一半的苹果

    halfplus就是这个顾客买了一半苹果,最后还送了他半个苹果

    最后恰好卖完所有苹果

    问你赚了多少钱

    题解:

    倒着推就好了

    当成模拟题做就行了

    代码

    #include<bits/stdc++.h>
    using namespace std;
    
    long long ans = 0;
    string s[45];
    int main()
    {
        int n,p;scanf("%d%d",&n,&p);
        for(int i=0;i<n;i++)
            cin>>s[i];
        long long now = 0;
        for(int i=n-1;i>=0;i--)
        {
            if(s[i]=="half")
            {
                ans+=now*p;
                now=now*2;
            }
            else
            {
                ans+=p/2+now*p;
                now=now*2+1;
            }
        }
        cout<<ans<<endl;
    }
  • 相关阅读:
    (转)SpringBoot使用@Value给静态变量注入
    关于Oracle to_date函数的高级用法
    Nginx实践篇(5)- Nginx代理服务
    SpringBoot @Autowired中注入静态方法或者静态变量
    SpringBoot MAVEN编译报错Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:
    SpringBoot项目中禁用HttpClient那些嘈杂的日志
    生成SQL Server数据字典
    SqlServer 查看最近执行过的语句
    为二级域名注册ssl证书,并强制使用https对http进行跳转
    CentOS 7 配置nginx并默认强制使用https对http进行跳转
  • 原文地址:https://www.cnblogs.com/qscqesze/p/5236708.html
Copyright © 2011-2022 走看看