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;
    }
  • 相关阅读:
    6、short s1 = 1; s1 = s1 + 1;有错吗?short s1 = 1; s1 += 1;有错吗?-Java面试题答案
    5、switch语句能否作用在byte上,能否作用在long上,能否作用在String上?-Java面试题答案
    4、在JAVA中如何跳出当前的多重嵌套循环?-Java面试题答案
    3、说说&和&&的区别-Java面试题答案
    2、Java有没有goto?-Java,面试题答案
    1、一个".java"源文件中是否可以包括多个类(不是内部类)?有什么限制?-Java面试题答案
    javaScript属性
    javaScript基本知识
    javaScript额外笔记
    OOP-基础知识(c#)
  • 原文地址:https://www.cnblogs.com/zhangchengc919/p/5236159.html
Copyright © 2011-2022 走看看