2184-Friends ZCMU

针对数学猜想,即在任意六人中必有三人互识或三人互不识的问题,本篇通过编程验证这一猜想是否同样适用于五人的情况。输入五人间的相识关系,并判断是否存在三人群体完全相识或完全不相识。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Description

One day Igor K. stopped programming and took up math. One late autumn evening he was sitting at a table reading a book and thinking about something.

The following statement caught his attention: "Among any six people there are either three pairwise acquainted people or three pairwise unacquainted people"

Igor just couldn't get why the required minimum is 6 people. "Well, that's the same for five people, too!" − he kept on repeating in his mind. − "Let's take, say, Max, Ilya, Vova − here, they all know each other! And now let's add Dima and Oleg to Vova − none of them is acquainted with each other! Now, that math is just rubbish!"

Igor K. took 5 friends of his and wrote down who of them is friends with whom. Now he wants to check whether it is true for the five people that among them there are either three pairwise acquainted or three pairwise not acquainted people.

Input

The first line contains an integer m (0≤m≤10), which is the number of relations of acquaintances among the five friends of Igor's.

Each of the following m lines contains two integers ai and bi (1≤ai,bi≤5;aibi), where (ai,bi) is a pair of acquainted people. It is guaranteed that each pair of the acquaintances is described exactly once. The acquaintance relation is symmetrical, i.e. if x is acquainted with y, then y is also acquainted with x.

Output

Print "FAIL", if among those five people there are no either three pairwise acquainted or three pairwise unacquainted people. Otherwise print "WIN。

Examples

Input

4
1 3
2 3
1 4
5 3

Output

WIN

Input

5
1 2
2 3
3 4
4 5
5 1

Output

FAIL

思路:5个朋友中要有3对人是互相认识,3对人是互相不认识。但若是5个人的关系之中存在环,那么这个情况便不符合要求

代码:

#include<stdio.h>
#include<string.h>
int re[10];
int main()
{
    int n,i,x,y,flag;
    while(~scanf("%d",&n))
    {
        memset(re,0,sizeof(re));
        for(i=0;i<n;i++)
        {
           scanf("%d%d",&x,&y);
           re[x]++;
           re[y]++;
        }
        flag=0;
        for(i=1;i<=5;i++)
        {
            if(re[i]!=2)
               flag=1;
        }
        if(flag)
            printf("WIN\n");
        else
            printf("FALL\n");
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值