문제 출처:https://www.acmicpc.net/problem/2010
이 문제는 컴퓨터의 전원을 연결할 수 있는 콘셉트의 갯수를 출력하는 문제입니다. 물론 저렇게 연결하면 과전류의 위험이 있습니다만.. 이 문제 또한 해결하는 데 큰 어려움은 없었습니다.
코드는 다음과 같습니다:
#include <iostream>
using namespace std ;
int main(){
ios::sync_with_stdio(false) ;
cin.tie(NULL) ; cout.tie(NULL) ;
int N, plug_num, outlet_num = 1 ;
cin >> N ;
for(int i = 0 ; i < N ; i++){
cin >> plug_num ;
outlet_num += plug_num - 1;
}
cout << outlet_num << endl ;
return 0 ;
}
해당 문제는 Github에서도 보실 수 있습니다:
https://github.com/gurcks8989/CodingTest/blob/master/BackJoon/HPS/P2010_Plug.cpp
훈수 및 조언은 언제든 환영입니다.