CF154D.Flatland Fencing

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The King of Flatland will organize a knights' tournament! The winner will get half the kingdom and the favor of the princess of legendary beauty and wisdom. The final test of the applicants' courage and strength will be a fencing tournament. The tournament is held by the following rules: the participants fight one on one, the winner (or rather, the survivor) transfers to the next round.

Before the battle both participants stand at the specified points on the OxOx axis with integer coordinates. Then they make moves in turn. The first participant moves first, naturally. During a move, the first participant can transfer from the point xx to any integer point of the interval [ x+ax+a ; x+bx+b ]. The second participant can transfer during a move to any integer point of the interval [ xbx-b ; xax-a ]. That is, the options for the players' moves are symmetric (note that the numbers aa and bb are not required to be positive, and if a<=0<=ba<=0<=b , then staying in one place is a correct move). At any time the participants can be located arbitrarily relative to each other, that is, it is allowed to "jump" over the enemy in any direction. A participant wins if he uses his move to transfer to the point where his opponent is.

Of course, the princess has already chosen a husband and now she wants to make her sweetheart win the tournament. He has already reached the tournament finals and he is facing the last battle. The princess asks the tournament manager to arrange the tournament finalists in such a way that her sweetheart wins the tournament, considering that both players play optimally. However, the initial location of the participants has already been announced, and we can only pull some strings and determine which participant will be first and which one will be second. But how do we know which participant can secure the victory? Alas, the princess is not learned in the military affairs... Therefore, she asks you to determine how the battle will end considering that both opponents play optimally. Also, if the first player wins, your task is to determine his winning move.

输入格式

The first line contains four space-separated integers — x1x_{1} , x2x_{2} , aa and bb ( x1x2x_{1}≠x_{2} , a<=ba<=b , 109<=x1,x2,a,b<=109-10^{9}<=x_{1},x_{2},a,b<=10^{9} ) — coordinates of the points where the first and the second participant start, and the numbers that determine the players' moves, correspondingly.

输出格式

On the first line print the outcome of the battle as "FIRST" (without the quotes), if both players play optimally and the first player wins. Print "SECOND" (without the quotes) if the second player wins and print "DRAW" (without the quotes), if nobody is able to secure the victory.

If the first player wins, print on the next line the single integer xx — the coordinate of the point where the first player should transfer to win. The indicated move should be valid, that is, it should meet the following condition: x1+a<=x<=x1+bx_{1}+a<=x<=x_{1}+b . If there are several winning moves, print any of them. If the first participant can't secure the victory, then you do not have to print anything.

输入输出样例

  • 输入#1

    0 2 0 4
    

    输出#1

    FIRST
    2
    
  • 输入#2

    0 2 1 1
    

    输出#2

    SECOND
    
  • 输入#3

    0 2 0 1
    

    输出#3

    DRAW
    

说明/提示

In the first sample the first player can win in one move.

In the second sample the first participant must go to point 11 , where the second participant immediately goes and wins.

In the third sample changing the position isn't profitable to either participant, so nobody wins.

首页