The Lead Game – CodeChef Solution

What’s up coders, today we are going to solve The Lead Game CodeChef Solution whose Problem code is TLG.

The Lead Game - CodeChef Solution

Problem

The game of billiards involves two players knocking 3 balls around on a green baize table. Well, there is more to it, but for our purposes this is sufficient.

The game consists of several rounds and in each round both players obtain a score, based on how well they played. Once all the rounds have been played, the total score of each player is determined by adding up the scores in all the rounds and the player with the higher total score is declared the winner.

The Siruseri Sports Club organises an annual billiards game where the top two players of Siruseri play against each other. The Manager of Siruseri Sports Club decided to add his own twist to the game by changing the rules for determining the winner. In his version, at the end of each round, the cumulative score for each player is calculated, and the leader and her current lead are found. Once all the rounds are over the player who had the maximum lead at the end of any round in the game is declared the winner.

Consider the following score sheet for a game with 5 rounds:

RoundPlayer 1Player 2
114082
289134
390110
4112106
58890

The total scores of both players, the leader and the lead after each round for this game is given below:

RoundPlayer 1Player 2 LeaderLead
114082Player 158
2229216Player 113
3319326Player 2  7
4431432Player 2  1
5519522Player 2  3

Note that the above table contains the cumulative scores.

The winner of this game is Player 1 as he had the maximum lead (58 at the end of round 1) during the game.

Your task is to help the Manager find the winner and the winning lead. You may assume that the scores will be such that there will always be a single winner. That is, there are no ties.

Input

The first line of the input will contain a single integer N (N ≤ 10000) indicating the number of rounds in the game. Lines 2,3,…,N+1 describe the scores of the two players in the N rounds. Line i+1 contains two integer Si and Ti, the scores of the Player 1 and 2 respectively, in round i. You may assume that 1 ≤ Si ≤ 1000 and 1 ≤ Ti ≤ 1000.

Output

Your output must consist of a single line containing two integers W and L, where W is 1 or 2 and indicates the winner and L is the maximum lead attained by the winner.

Example

Input:

5
140 82
89 134
90 110
112 106
88 90

Output:

1 58

Solution – The Lead Game – CodeChef Solution

Python 3

#Solution Provided by CodingBroz 
n = int(input())
player1_score = 0
Player2_score = 0
lead = 0
for i in range(n):
    score1, score2 = map(int, input().split())
    player1_score = player1_score + score1
    Player2_score = Player2_score + score2
    diff = player1_score - Player2_score

    if diff > 0 and diff > lead:
        lead = diff
        leader = 1
    elif diff < 0 and abs(diff) > lead:
        lead = abs(diff)
        leader = 2
print(leader,lead)

Disclaimer: The above Problem (The Lead Game) is generated by CodeChef but the Solution is provided by CodingBroz. This tutorial is only for Educational and Learning purpose.

1 thought on “The Lead Game – CodeChef Solution”

  1. t=int(input())
    l=[]
    l2=[]
    for i in range(t):
    x, y=map(int,input().split())
    if(x>y):
    r=x-y
    l.append(r)
    elif(y>x):
    m=y-x
    l2.append(m)
    o=max(l)
    p=max(l2)
    if (o>p):
    print(1,max(l))
    else:
    print(2,max(l2))
    please tell me erorr

Leave a Comment

Your email address will not be published. Required fields are marked *