zoukankan      html  css  js  c++  java
  • sicily 1232. Electrical Outlets

    Description
    Roy has just moved into a new apartment. Well, actually the apartment itself is not very new, even dating back to the days before people had electricity in their houses. Because of this, Roy's apartment has only one single wall outlet, so Roy can only power one of his electrical appliances at a time.
    Roy likes to watch TV as he works on his computer, and to listen to his HiFi system (on high volume) while he vacuums, so using just the single outlet is not an option. Actually, he wants to have all his appliances connected to a powered outlet, all the time. The answer, of course, is power strips, and Roy has some old ones that he used in his old apartment. However, that apartment had many more wall outlets, so he is not sure whether his power strips will provide him with enough outlets now.
    Your task is to help Roy compute how many appliances he can provide with electricity, given a set of power strips. Note that without any power strips, Roy can power one single appliance through the wall outlet. Also, remember that a power strip has to be powered itself to be of any use.
    Input
    Input will start with a single integer 1 <= N <= 20, indicating the number of test cases to follow. Then follow N lines, each describing a test case. Each test case starts with an integer 1 <= K <= 10, indicating the number of power strips in the test case. Then follow, on the same line, K integers separated by single spaces, O1 O2 . . . OK, where 2 <= Oi <= 10, indicating the number of outlets in each power strip.
    Output
    Output one line per test case, with the maximum number of appliances that can be powered.
     
    起床的菜鸟刷水题……
    计算方法很简单,可用插孔 = 所有插座提供的插孔 - 插座数(每个插座占用的插孔) + 1(墙上的那个插孔)
    (这么堆插座不会烧么,喷)
     
    做这种一次一个case的题总是忘记做完一个case就清零,希望熟了就不再犯了……
     
    View Code
     1 #include<stdio.h>
     2 int main()
     3 {
     4     int n, k, i, j, o, total = 0;
     5     
     6     scanf("%d", &n);
     7     
     8     for( i = 1; i <= n; i++)
     9     {
    10         scanf("%d", &k);
    11         
    12         for( j = 0; j < k; j++ )
    13         {
    14             scanf("%d", &o);
    15             total = total + o;
    16         }
    17         
    18         total = total - k + 1;
    19         
    20         printf("%d\n", total);
    21         
    22         total = 0;
    23     }
    24     
    25     return 0;
    26 } 
  • 相关阅读:
    js上传文件(图片)限制格式及大小为3M
    position:fixed部分版本的浏览器不支持
    iframe自适应高度的方法
    div左右自适应高度一致
    IE中部分版本的浏览器对Select标签设置innerHTML无效的问题
    在ie10中如何禁用输入框中的小眼睛 与 叉叉 删除按钮
    input输入框默认文字,点击消失
    调用iframe中父页面/子页面中的JavaScript方法
    iframe的一些介绍
    artDialog的一些例子与一些属性的介绍。
  • 原文地址:https://www.cnblogs.com/joyeecheung/p/2763816.html
Copyright © 2011-2022 走看看