POJ 2636 Electrical Outlets C++版

题目链接:http://poj.org/problem?id=2636

水题,问一堆插座相互相接后有多少个插孔可以用

代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*Problem: 2636		User: awq123
**Memory: 252K Time: 0MS
**Language: C++ Result: Accepted
/*
#include <iostream>
#include <cstdio>

using namespace std;

int main()
{
int n;
cin>>n;
while(n--)
{
int m;
cin>>m;
int sum=1-m;
while(m--)
{
int t;
cin>>t;
sum+=t;
}
cout<<sum<<endl;
}
}