2976.Vasya and Wrestling

Time Limit: 1s Memory Limit: 256MB

Vasya has become interested in wrestling. In wrestling wrestlers use techniques for which they are awarded points by judges. The wrestler who gets the most points wins.

When the numbers of points of both wrestlers are equal, the wrestler whose sequence of points is lexicographically greater, wins.

If the sequences of the awarded points coincide, the wrestler who performed the last technique wins. Your task is to determine which wrestler won.

Input Format(From the terminal/stdin)

The first line contains number n - the number of techniques that the wrestlers have used (1 \le n \le 2 \cdot 105).

The following n lines contain integer numbers ai (|ai| \le 109, ai \neq 0). If ai is positive, that means that the first wrestler performed the technique that was awarded with ai points. And if ai is negative, that means that the second wrestler performed the technique that was awarded with (-ai) points.

The techniques are given in chronological order.

Output Format(To the terminal/stdout)

If the first wrestler wins, print string "first", otherwise print "second"

Sample Input 1

Copy
5
1
2
-3
-4
3
 \n
 \n
 \n
  \n
  \n
 \n

Sample Output 1

Copy
second
      \n

Sample Input 2

Copy
3
-1
-2
3
 \n
  \n
  \n
 \n

Sample Output 2

Copy
first
     \n

Sample Input 3

Copy
2
4
-4
 \n
 \n
  \n

Sample Output 3

Copy
second
      \n

Hints

Sequence x=x1x2... x|x| is lexicographically larger than sequence y=y1y2... y|y|, if either |x| \gt |y| and x1=y1,x2=y2,... ,x|y|=y|y|, or there is such number r (r \lt |x|,r \lt |y|), that x1=y1,x2=y2,... ,xr=yr and xr+1 \gt yr+1.

We use notation |a| to denote length of sequence a.

Submit

请先 登录

© 2025 FAQs