Advertisement
elena1234

Snowwhite*-order against the recomendation

Nov 8th, 2020 (edited)
212
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.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace Dictionary
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             var hatColorWithNamesAndPhysics = new Dictionary<string, Dictionary<string, int>>();
  12.             string input = string.Empty;
  13.             while ((input = Console.ReadLine()) != "Once upon a time")
  14.             {
  15.                 string[] inputArray = input.Split(" <:> ", StringSplitOptions.RemoveEmptyEntries).Select(x => x).ToArray();
  16.                 string name = inputArray[0];
  17.                 string hatColor = inputArray[1];
  18.                 int physics = int.Parse(inputArray[2]);
  19.  
  20.                 if (hatColorWithNamesAndPhysics.ContainsKey(hatColor) == false)
  21.                 {
  22.                     hatColorWithNamesAndPhysics[hatColor] = new Dictionary<string, int>();
  23.                     hatColorWithNamesAndPhysics[hatColor].Add(name, physics);
  24.                 }
  25.  
  26.                 else if (hatColorWithNamesAndPhysics.ContainsKey(hatColor) == true)
  27.                 {
  28.                     bool haveDwarfWithTheSameName = false;
  29.                     foreach (var kvp in hatColorWithNamesAndPhysics[hatColor])
  30.                     {
  31.                         string currentName = kvp.Key;
  32.                         int currentPhysics = kvp.Value;
  33.                         if (currentName == name)
  34.                         {
  35.                             haveDwarfWithTheSameName = true;
  36.                             if (physics > currentPhysics)
  37.                             {
  38.                                 hatColorWithNamesAndPhysics[hatColor][currentName] = physics;
  39.                                 break;
  40.                             }
  41.                         }
  42.                     }
  43.  
  44.                     if (haveDwarfWithTheSameName == false)
  45.                     {
  46.                         hatColorWithNamesAndPhysics[hatColor].Add(name, physics);
  47.                     }
  48.                 }
  49.             }
  50.  
  51.             var sortedDwarf = new Dictionary<string, int>();
  52.             foreach (var kvp in hatColorWithNamesAndPhysics.OrderByDescending(x=>x.Value.Count()))
  53.             {
  54.                 string hatColor = kvp.Key;
  55.                 var namesAndPhysics = kvp.Value;
  56.                 foreach (var kvp1 in namesAndPhysics)
  57.                 {
  58.                     string name = kvp1.Key;
  59.                     int physic = kvp1.Value;
  60.                     sortedDwarf.Add($"({hatColor}) {name} <-> ", physic);
  61.                 }
  62.             }
  63.  
  64.             foreach (var kvp in sortedDwarf.OrderByDescending(x=>x.Value))
  65.             {
  66.                 string name = kvp.Key;
  67.                 int physic = kvp.Value;
  68.                 Console.WriteLine($"{name}{physic}");
  69.             }
  70.         }
  71.     }
  72. }
  73.  
  74.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement