SDUT L - Sticky Situation(Gym 101490L)

SDUT L - Sticky Situation(Gym 101490L)_第1张图片
SDUT L - Sticky Situation(Gym 101490L)_第2张图片

#include 
#include 
using namespace std;
int main()
{
     
    int n,i;
    long long int a[20020];
    cin>>n;
    for(i=0; i<n; i++)
    {
     
        cin>>a[i];
    }
    sort(a,a+n);
    int flag=0;
    for(i=0; i<n-2; i++)
    {
     
        if(a[i]+a[i+1]>a[i+2])
        {
     
            flag=1;
            break;
        }
    }
    if(flag==1)
        cout<<"possible";
    else
        cout<<"impossible";
    return 0;
}

你可能感兴趣的:(SDUT L - Sticky Situation(Gym 101490L))