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 vill 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, O1O2...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.
Sample Input
33 2 3 4
10 4 4 4 4 4 4 4 4 4 4
4 10 10 10 10
Sample Output
7
31
37
Source: Nordic 2005
分析:
题意:
给定测试组数t。以下是t组测试数据,每组第一个数是n,接下来是n个整数 。输出n个整数的和减n再加1就可以。
水题。读懂题意就行。
ac代码:
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int t,n,i,j,m;
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
int s=0;
for(i=0;i<n;i++)
{
scanf("%d",&m);
s+=m;
}
printf("%d\n",s-n+1);
}
return 0;
}
本文介绍了一个简单的编程问题,即计算通过使用多个电源插板能够连接的电器总数。问题要求读取电源插板的数量及其各自提供的插座数量,然后计算出除电源插板自身占用外还能为多少个电器提供电力。

被折叠的 条评论
为什么被折叠?



