krasizorbov

Fast Food

May 16th, 2019
1,387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.99 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Linq;
  5.  
  6. namespace Fast_Food
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             int foodQuantity = int.Parse(Console.ReadLine());
  13.  
  14.             int[] orders = Console.ReadLine().Split().Select(int.Parse).ToArray();
  15.  
  16.             var myQ = new Queue<int>(orders);
  17.  
  18.             int sum = 0;
  19.  
  20.             Console.WriteLine(myQ.Max());
  21.  
  22.             while (myQ.Count > 0)
  23.             {
  24.                 int first = myQ.Peek();
  25.  
  26.                 sum += first;
  27.  
  28.                 if (sum <= foodQuantity)
  29.                 {
  30.                     myQ.Dequeue();
  31.                 }
  32.                 else
  33.                 {
  34.                     int[] arr = myQ.ToArray();
  35.                     Console.WriteLine("Orders left: " + string.Join(" ", arr));
  36.                     return;
  37.                 }
  38.             }
  39.  
  40.             Console.WriteLine("Orders complete");
  41.         }
  42.     }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment