https://codeforces.com/problemset/problem/599/A
3가지의 길을 따라서 다시 집으로 돌아올 때, 가장 최소의 거리를 걸어야 하는 경우를 찾는 과정
arr sort => std:sort(a,a+3)과 같이 사용
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main() {
int arr[3];
for(int i = 0; i < 3 ; i++){
cin >> arr[i];
}
sort(arr, arr+3);
int firstCount = arr[0]*2 + arr[1] * 2;
int secondCount = arr[0]+arr[1]+arr[2];
cout << min(firstCount, secondCount) << endl;
return 0;
}