Archery Game
Coding Problem Keys
Archery Game
Problem Statement
In an archery game, a bow and arrow is used to aim at the center of the
circular target. The points are awarded based on how close the arrow hits
the center of the target. The points for a shoot is calculated by the
formula (3 - DISTANCE FROM CENTER OF THE TARGET) * 100. The target
has radius of 3 units and any arrow hitting outside of the target will
result in 0 points. Given N records with archer's name and the arrow's
landing coordinates print the leaderboard (sorted by the total points,
with highest score first) rounded up to 2 decimal places. The archers name
could be repeated as a single archer can shoot multiple times.
Boundary Conditions
1 <= N <= 1000.
Input Format
First line contains N.
Next N lines contain the archers name and arrow's landing coordinates
separated by a space.
Output Format
D lines containing the name of the archer and their total points scored
separated by a space. D denotes the unique archers count.
Example Input/Output 1
Input
6
Ravi 1 1
Ravi 2 2
Ram 0.4 0.3
Divya 1.3 2.5
Divya 2.5 3.4
Ram 0.2 0.4
Output
Ram 505.28
Ravi 175.74
Divya 18.22
Note: Max Execution Time Limit: 5000 millisecs
Solution
Programming Language: Python 3 Language
n=int(input());f=[];s=[];k=[] for i in range(n): a,x,y=input().split() x=float(x);y=float(y);dis=(x*x+y*y)**0.5 if int(dis)>=3 or x>3 or y>3:s+=[[a,0]];continue; res=(3-dis)*100;s+=[[a,res]] for i in range(len(s)): for j in range(len(s)): if i!=j and s[i][0]==s[j][0]: s[i][-1]+=s[j][-1] for i in s: if i[0] not in k: k.append(i[0]) f.append(i) f=sorted(f,key=lambda x:x[-1]);f=f[::-1] for ele in f: print(ele[0],"%.2f"%ele[-1])
#Published By PKJCODERS
(Note: Incase If the code Doesn't Pass the output kindly comment us
with your feedback to help us improvise.)
Comments