zoukankan      html  css  js  c++  java
  • A. Vasya and the Bus

    A. Vasya and the Bus
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    One day Vasya heard a story: "In the city of High Bertown a bus number 62 left from the bus station. It had n grown-ups and m kids..."

    The latter events happen to be of no importance to us. Vasya is an accountant and he loves counting money. So he wondered what maximum and minimum sum of money these passengers could have paid for the ride.

    The bus fare equals one berland ruble in High Bertown. However, not everything is that easy — no more than one child can ride for free with each grown-up passenger. That means that a grown-up passenger who rides with his k (k > 0) children, pays overall k rubles: a ticket for himself and (k - 1) tickets for his children. Also, a grown-up can ride without children, in this case he only pays one ruble.

    We know that in High Bertown children can't ride in a bus unaccompanied by grown-ups.

    Help Vasya count the minimum and the maximum sum in Berland rubles, that all passengers of this bus could have paid in total.

    Input

    The input file consists of a single line containing two space-separated numbers n and m (0 ≤ n, m ≤ 105) — the number of the grown-ups and the number of the children in the bus, correspondingly.

    Output

    If n grown-ups and m children could have ridden in the bus, then print on a single line two space-separated integers — the minimum and the maximum possible total bus fare, correspondingly.

    Otherwise, print "Impossible" (without the quotes).

    Sample test(s)
    input
    1 2
    
    output
    2 2
    input
    0 5
    
    output
    Impossible
    input
    2 2
    
    output
    2 3
    Note

    In the first sample a grown-up rides with two children and pays two rubles.

    In the second sample there are only children in the bus, so the situation is impossible.

      In the third sample there are two cases:
    • Each of the two grown-ups rides with one children and pays one ruble for the tickets. In this case the passengers pay two rubles in total.
    • One of the grown-ups ride with two children's and pays two rubles, the another one rides alone and pays one ruble for himself. So, they pay three rubles in total.

    这是一道水题,但要注意m,n均可为0……其他就没什么了

    AC code

    #include <iostream>
    #include <cstdio>
    using namespace std;
    int main()
    {
        int n,m,max,min;
        while(scanf("%d%d",&n,&m)!=EOF)
        {
            if(n==0 && m!=0)
            {
                printf("Impossible\n");
            }
            else if(m==0)
            {
                min=max=n;
                printf("%d %d\n",min,max);
            }
            else if(n!=0 && m!=0)
            {
                if(n>=m)
                {
                    max=n+m-1;
                    min=n;
                }
                else
                {
                    min=m;
                    max=n+m-1;
                }
                printf("%d %d\n",min,max);
            }
        }
        return 0;
    }
    


  • 相关阅读:
    命保住了!五年时间,我们也搞了一个技术中台(转)
    为什么要前后端分离?有什么优缺点?(转)
    Java WebService _CXF、Xfire、AXIS2、AXIS1_四种发布方式(优缺点对比)
    Java WebService _CXF、Xfire、AXIS2、AXIS1_四种发布方式(使用整理)
    Java WebService(实战) 简单实例
    Intellij IDEA svn的使用记录
    IDEA SonarLint安装及使用
    Java开发中的23种设计模式详解(收藏-转)
    Java中的static关键字解析
    触发器_实现ORACEL自动增长字段
  • 原文地址:https://www.cnblogs.com/cszlg/p/2910511.html
Copyright © 2011-2022 走看看