E - Triangle

E - Triangle
Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

Description

Johnny has a younger sister Anne, who is very clever and smart. As she came home from the kindergarten, she told his brother about the task that her kindergartener asked her to solve. The task was just to construct a triangle out of four sticks of different colours. Naturally, one of the sticks is extra. It is not allowed to break the sticks or use their partial length. Anne has perfectly solved this task, now she is asking Johnny to do the same.

The boy answered that he would cope with it without any difficulty. However, after a while he found out that different tricky things can occur. It can happen that it is impossible to construct a triangle of a positive area, but it is possible to construct a degenerate triangle. It can be so, that it is impossible to construct a degenerate triangle even. As Johnny is very lazy, he does not want to consider such a big amount of cases, he asks you to help him.

Input

The first line of the input contains four space-separated positive integer numbers not exceeding 100 — lengthes of the sticks.

Output

Output TRIANGLE if it is possible to construct a non-degenerate triangle. Output SEGMENT if the first case cannot take place and it is possible to construct a degenerate triangle. Output IMPOSSIBLE if it is impossible to construct any triangle. Remember that you are to use three sticks. It is not allowed to break the sticks or use their partial length.

Sample Input

Input
4 2 1 3
Output
TRIANGLE
Input
7 2 2 4
Output
SEGMENT
Input
3 5 9 1
Output
IMPOSSIBLE
#include<iostream>
#include <map>
#include <set>
#include <list>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <vector>
#include <bitset>
#include <cstdio>
#include <string>
#include <numeric>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <functional>
using namespace std;
typedef long long ll;
#define Exp 1e-8
#define inf 0x7fffffff
#define Read freopen("in.txt","r",stdin)
#define Write freopen("out.txt","w",stdout)
#define maxn 55
#define mod 1000000007
int a[4];/**直接枚举判断即可**/

int S(int a,int b,int c)
{
    if(a+b>c&&abs(a-b)<c)
        return 1;
    if(a+c>b&&abs(a-c)<b)
        return 1;
    if(c+b>a&&abs(c-b)<a)
        return 1;
    return 0;

}
int p(int a,int b,int c)
{
    if(a+b==c)
        return 1;
    if(a+c==b)
        return 1;
    if(c+b==a)
        return 1;
    return 0;

}

void print()
{
    int i;
    if(S(a[0],a[1],a[2]))
    {
        printf("TRIANGLE");
        return ;
    }
    if(S(a[0],a[2],a[3]))
    {
        printf("TRIANGLE");
        return ;
    }
    if(S(a[0],a[1],a[3]))
    {
        printf("TRIANGLE");
        return ;
    }
    if(S(a[1],a[2],a[3]))
    {
        printf("TRIANGLE");
        return ;
    }

    if(p(a[0],a[1],a[2]))
    {
        printf("SEGMENT");
        return ;
    }
    if(p(a[0],a[2],a[3]))
    {
        printf("SEGMENT");
        return ;
    }
    if(p(a[0],a[1],a[3]))
    {
        printf("SEGMENT");
        return ;
    }
    if(p(a[1],a[2],a[3]))
    {
        printf("SEGMENT");
        return ;
    }
    printf("IMPOSSIBLE");
    return ;


}

int main()
{
    cin>>a[0]>>a[1]>>a[2]>>a[3];
    print();
    printf("\n");
    return 0;
}
**/


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值