-
Notifications
You must be signed in to change notification settings - Fork 35
/
ClimbingtheLeaderboard.cs
62 lines (49 loc) · 1.79 KB
/
ClimbingtheLeaderboard.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Climbing the Leaderboard
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
using System.Text.RegularExpressions;
using System.Text;
using System;
class Solution {
// Complete the climbingLeaderboard function below.
static int[] climbingLeaderboard(int[] scores, int[] alice)
{
var distict = scores.Distinct().ToArray();
var result = new int[alice.Length];
var comparer = new ReverseComparer<int>();
for (int index = 0; index < alice.Length; index++)
{
var search = Array.BinarySearch(distict, alice[index], comparer);
if(search >= 0)
result[index] = search + 1;
else
result[index] = -search;
}
return result;
}
class ReverseComparer<T> : IComparer<T>
{
public int Compare(T x, T y) => Comparer<T>.Default.Compare(y, x);
}
static void Main(string[] args) {
TextWriter textWriter = new StreamWriter(@System.Environment.GetEnvironmentVariable("OUTPUT_PATH"), true);
int scoresCount = Convert.ToInt32(Console.ReadLine());
int[] scores = Array.ConvertAll(Console.ReadLine().Split(' '), scoresTemp => Convert.ToInt32(scoresTemp))
;
int aliceCount = Convert.ToInt32(Console.ReadLine());
int[] alice = Array.ConvertAll(Console.ReadLine().Split(' '), aliceTemp => Convert.ToInt32(aliceTemp))
;
int[] result = climbingLeaderboard(scores, alice);
textWriter.WriteLine(string.Join("\n", result));
textWriter.Flush();
textWriter.Close();
}
}