POJ 2636:Electrical Outlets

网友投稿 1718 2022-08-26

POJ 2636:Electrical Outlets

POJ 2636:Electrical Outlets

Electrical Outlets

Time Limit: 1000MS

 

Memory Limit: 65536K

Total Submissions: 9597

 

Accepted: 7186

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.

Sample Input

33 2 3 4 10 4 4 4 4 4 4 4 4 4 4 4 10 10 10 10

Sample Output

731 37

Source

​​Nordic 2005​​

你  离  开  了  ,  我  的  世  界  里  只  剩  下  雨  。  。  。

#include int main() { int t, a, sum, n, i; scanf("%d",&t); while(t--) { scanf("%d",&n); sum = 1 - n; for(i=0; i

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:YTU 2896: J--Zipper
下一篇:最让程序员感到崩溃的10种编程语言(让程序员崩溃的瞬间(非程序员勿入))
相关文章

 发表评论

暂时没有评论,来抢沙发吧~