[백준] #1448 삼각형 만들기(c++)

kkily·2021년 7월 17일
0

[알고리즘]

목록 보기
44/102

문제링크

#include<iostream>
#include<algorithm>

using namespace std;

bool compare(int i,int j){
    return j < i;
}
int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int n,f=0,s=1,t=2;
    cin >> n;
    int arr[n];

    for (int i = 0; i < n;i++){
        cin >> arr[i];
    }

    sort(arr,arr+n,compare);
    while(true){
        if(arr[f] < arr[s]+arr[t]){
            cout << arr[f] + arr[s] + arr[t] << "\n";
            break;
        }
        f++,s++,t++;
        if(t>=n){
            cout << -1;
            break;
        }

    }
}
profile
낄리의 개발 블로그╰(*°▽°*)╯

0개의 댓글

관련 채용 정보