Advertisement
Spocoman

02. SoftUni Karaoke

Feb 16th, 2024
502
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.41 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4.  
  5. namespace SoftUniKaraoke
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             List<string> participants = Console.ReadLine().Split(", ").ToList();
  12.             List<string> songs = Console.ReadLine().Split(", ").ToList();
  13.  
  14.             var info = new Dictionary<string, SortedSet<string>>();
  15.  
  16.             string command;
  17.             while ((command = Console.ReadLine()) != "dawn")
  18.             {
  19.                 string[] tokens = command.Split(", ");
  20.                 string participant = tokens[0], song = tokens[1], award = tokens[2];
  21.  
  22.                 if (participants.Contains(participant) && songs.Contains(song))
  23.                 {
  24.                     if (!info.ContainsKey(participant))
  25.                     {
  26.                         info[participant] = new SortedSet<string>();
  27.                     }
  28.                     info[participant].Add(award);
  29.                 }
  30.             }
  31.  
  32.             if (info.Count > 0)
  33.             {
  34.                 foreach (var i in info.OrderByDescending(x => x.Value.Count).ThenBy(x => x.Key))
  35.                 {
  36.                     Console.WriteLine($"{i.Key}: {i.Value.Count} awards\n--" + String.Join("\n--", i.Value));
  37.                 }
  38.             }
  39.             else
  40.             {
  41.                 Console.WriteLine("No awards");
  42.             }
  43.         }
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement