Advertisement
ambiorixdr

EnduranceRally

Apr 15th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.38 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. public class Startup
  8. {
  9.     public static void Main()
  10.     {
  11.         string[] drivers = Console.ReadLine().Split();
  12.         List<double> zones = Console.ReadLine().Split().Select(double.Parse).ToList();
  13.         List<long> checkpoints = Console.ReadLine().Split().Select(long.Parse).ToList();
  14.  
  15.         for (int i = 0; i < drivers.Length; i++)
  16.         {
  17.             char driver = drivers[i][0];
  18.             double sum = driver;
  19.             int zoneReached = 0;
  20.  
  21.             for (int k = 0; k < zones.Count; k++)
  22.             {
  23.                 double zone = zones[k];
  24.  
  25.                 //  if (checkpoints.Any(x => x == zones.IndexOf(zone)))
  26.                 if (checkpoints.Contains(k))
  27.                 {
  28.                     sum += zone;
  29.                 }
  30.                 else
  31.                 {
  32.                     sum -= zone;
  33.                 }
  34.                 if (sum <= 0)
  35.                 {
  36.                     zoneReached = k;
  37.                     break;
  38.                 }
  39.             }
  40.  
  41.             if (sum > 0)
  42.             {
  43.                 Console.WriteLine($"{drivers[i]} - fuel left {sum:f2}");
  44.             }
  45.             else
  46.             {
  47.                 Console.WriteLine($"{drivers[i]} - reached {zoneReached}");
  48.             }
  49.         }
  50.     }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement