krasizorbov

Fast Food1

May 16th, 2019
707
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.17 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace _04._Fast_Food
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             var food = int.Parse(Console.ReadLine());
  12.  
  13.             int[] sells = Console.ReadLine()
  14.                 .Split(" ").Select(int.Parse).ToArray();
  15.  
  16.             int sum = 0 ;
  17.            
  18.             var queue = new Queue<int>(sells);
  19.  
  20.             int bigestSell = queue.Max();
  21.  
  22.             for (int i = 0; i < sells.Length; i++)
  23.             {
  24.                 sum += sells[i];
  25.                 if (sum <= food)
  26.                 {
  27.                     queue.Dequeue();
  28.                 }      
  29.             }
  30.             if (queue.Count > 0)
  31.             {
  32.                 Console.WriteLine(bigestSell);
  33.                 Console.Write("Orders left: ");
  34.                 foreach (var orders in queue)
  35.                 {
  36.                     Console.Write($"{orders} ");
  37.                 }
  38.                 Console.WriteLine();
  39.             }
  40.             else
  41.             {
  42.                 Console.WriteLine(bigestSell + Environment.NewLine + "Orders complete");
  43.             }
  44.         }
  45.     }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment