codeforces 6A Triangle

来源:互联网 发布:足球球员数据统计 编辑:程序博客网 时间:2024/05/21 09:44
A. Triangle
time limit per test
2 seconds
memory limit per test
64 megabytes
input
standard input
output
standard output

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.

意思就是有4个数,如果从中选3个数出来能组成一个面积为正的三角形,则输出TRIANGLE;如果能组成一个面积为0的三角形则输出SEGMENT ,如果不能组成三角形则输出IMPOSSIBLE 。

这个题目,随便怎么做吧。

#include <iostream>#include <cstdio>#include <cstdlib>#include <cmath>#include <cstring>#include <string>#include <stack>#include <map>#include <queue>#include <algorithm>using namespace std;int make_triangle(int a, int b, int c) {    int ta = max(a, max(b, c));    int tc = min(a, min(b, c));    int tb = a + b + c - ta - tc;    if (tb + tc > ta) return 1;    if (tb + tc == ta) return 0;    return -1;}int main() {    vector<int> num(4);    for (int i = 0; i < 4; i++) scanf("%d", &(num[i]));    vector<int> r(4);    r[0] = make_triangle(num[0], num[1], num[2]);    r[1] = make_triangle(num[0], num[1], num[3]);    r[2] = make_triangle(num[1], num[2], num[3]);    r[3] = make_triangle(num[0], num[2], num[3]);    bool triangle = false;    for (int i = 0; i < 4; i++) triangle = triangle || (r[i] == 1);    bool impossible = true;    for (int i = 0; i < 4; i++) impossible = impossible && (r[i] == -1);    if (triangle) {        printf("TRIANGLE\n");    } else if (impossible) {        printf("IMPOSSIBLE\n");    } else {        printf("SEGMENT\n");    }    return 0;}


0 0
原创粉丝点击