zoukankan      html  css  js  c++  java
  • codeforces 632A A. Grandma Laura and Apples(暴力)

    A. Grandma Laura and Apples
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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.

    Examples
    input
    2 10
    half
    halfplus
    output
    15
    input
    3 10
    halfplus
    halfplus
    halfplus
    output
    55
    Note

    In the first sample at the start of the day the grandma had two apples. First she sold one apple and then she sold a half of the second apple and gave a half of the second apple as a present to the second buyer.

    题意:half是买一半的苹果,halfplus是买一半的苹果并送半个,问最后得到多少钱;

    思路:全都*2,从最后一个开始算到第一个;

    AC代码:

    #include <bits/stdc++.h>
    using namespace std;
    string str[1004];
    long long n,p;
    int main()
    {
    
        cin>>n>>p;
        for(int i=0;i<n;i++)
        {
            cin>>str[i];
        }
        long long sum=0,ans=0;
        for(int i=n-1;i>=0;i--)
        {
            if(str[i]=="halfplus")
            {
                sum+=1;
                ans+=sum*p;
                sum*=2;
    
            }
            else
            {
                ans+=sum*p;
                sum*=2;
            }
        }
        cout<<ans/2<<endl;
        return 0;
    }
  • 相关阅读:
    php word转pdf后加水印失败 debug
    laravel跨库查询方法
    Git安装完成后初始化配置,配合Github配置步骤
    Linux服务器安全设置
    Navicat导出数据库设计文档
    Nginx配置Yii:backend&frontend
    phpstorm激活
    Git报错:error: cannot open .git/FETCH_HEAD: Read-only file system
    composer windows安装
    使用JS导出页面内容到Excel
  • 原文地址:https://www.cnblogs.com/zhangchengc919/p/5236159.html
Copyright © 2011-2022 走看看