Advertisement
Spocoman

03. MOBA Challenger

Apr 9th, 2023 (edited)
900
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.77 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4.  
  5. namespace MOBAChallenger
  6. {
  7.     class Program
  8.     {
  9.         public static void Main()
  10.         {
  11.             var players = new Dictionary<string, Dictionary<string, int>>();
  12.  
  13.             string command;
  14.  
  15.             while ((command = Console.ReadLine()) != "Season end")
  16.             {
  17.                 var current = command.Split(command.Contains(" -> ") ? " -> " : " vs ");
  18.                 string player = current[0];
  19.  
  20.                 if (current.Length == 3)
  21.                 {
  22.                     string position = current[1];
  23.                     int skill = int.Parse(current[2]);
  24.  
  25.                     if (!players.ContainsKey(player))
  26.                     {
  27.                         players.Add(player, new Dictionary<string, int>());
  28.                     }
  29.  
  30.                     if (!players[player].ContainsKey(position))
  31.                     {
  32.                         players[player].Add(position, skill);
  33.                     }
  34.  
  35.                     if (players[player][position] < skill)
  36.                     {
  37.                         players[player][position] = skill;
  38.                     }
  39.                 }
  40.                 else
  41.                 {
  42.                     string secondPlayer = current[1];
  43.  
  44.                     if (players.ContainsKey(player) && players.ContainsKey(secondPlayer))
  45.                     {
  46.                         var sameSkills = players[player].Keys
  47.                             .Concat(players[secondPlayer].Keys)
  48.                             .ToList();
  49.  
  50.                         sameSkills.Distinct()
  51.                             .ToList()
  52.                             .ForEach(x => sameSkills.Remove(x));
  53.  
  54.                         if (sameSkills.Count > 0)
  55.                         {
  56.                             if (players[player][sameSkills[0]] < players[secondPlayer][sameSkills[0]])
  57.                             {
  58.                                 players.Remove(player);
  59.                             }
  60.                             else if (players[player][sameSkills[0]] > players[secondPlayer][sameSkills[0]])
  61.                             {
  62.                                 players.Remove(secondPlayer);
  63.                             }
  64.                         }
  65.                     }
  66.                 }
  67.             }
  68.  
  69.             foreach (var player in players.OrderByDescending(x => x.Value.Values.Sum()).ThenBy(x => x.Key))
  70.             {
  71.                 Console.WriteLine($"{ player.Key}: {player.Value.Values.Sum()} skill");
  72.                 foreach  (var skill in player.Value.OrderByDescending(x => x.Value).ThenBy(x => x.Key))
  73.                 {
  74.                     Console.WriteLine($"- {skill.Key} <::> {skill.Value}");
  75.                 }
  76.             }
  77.         }
  78.     }
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement