zoukankan      html  css  js  c++  java
  • 2015南阳CCPC L

    L - Huatuo's Medicine

    Time Limit: 1 Sec  

    Memory Limit: 256 MB

    题目连接

    Description





    Huatuo was a famous doctor. He use identical bottles to carry the medicine. There are different types of medicine. Huatuo put medicines into the bottles and chain these bottles together.

    However, there was a critical problem. When Huatuo arrived the patient's home, he took the chain out of his bag, and he could not recognize which bottle contains which type of medicine, but he remembers the order of the bottles on the chain.

    Huatuo has his own solution to resolve this problem. When he need to bring 2 types of medicines, E.g. A and B, he will put A into one bottle and put B into two bottles. Then he will chain the bottles in the order of -B-A-B-. In this way, when he arrived the patient's home, he knew that the bottle in the middle is medicine A and the bottle on two sides are medicine B.

    Now you need to help Huatuo to work out what's the minimal number of bottles needed if he want to bring N types of medicine.



    Input

    For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the minimal number of bottles Huatuo needed.

    Output

    For each test case, output one line containing Case #x:, where x is the test case number (starting from 1). Then output 4 lines with 4 characters each. indicate the recovered board.

    Sample Input

    1
    2

    Sample Output

    Case #1: 3

    HINT

    题意

    华佗有n种药,让你构成一条最短的链,他能够在黑暗中也能找到自己想找到的药品

    题解:

    对称就好了,例如:D-C-B-A-B-C-D

    所以答案2n-1

    代码:

    #include<iostream>
    #include<stdio.h>
    using namespace std;
    
    
    int main()
    {
        int t;scanf("%d",&t);
        for(int cas = 1;cas <= t;cas ++)
        {
            int n;scanf("%d",&n);
            printf("Case #%d: %d
    ",cas,2*n-1);
        }
    }
  • 相关阅读:
    设计模式-抽象工厂
    设计模式-工厂方法
    设计模式-简单工厂
    设计模式-单例模式
    设计模式使用指南
    适合Java程序员看的UML学习手册
    第六周 Java8新特性
    deepin15.11系统使用罗技k380键盘
    动态规划系列之六01背包问题
    《比勤奋更重要的是底层思维》
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4899371.html
Copyright © 2011-2022 走看看