krasizorbov

Fasion Boutique

May 20th, 2019
1,309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.98 KB | None | 0 0
  1. namespace P05FashionBoutique
  2. {
  3.     using System;
  4.     using System.Collections.Generic;
  5.     using System.Linq;
  6.  
  7.     public class StartUp
  8.     {
  9.         public static void Main(string[] args)
  10.         {
  11.             int[] clothes = Console.ReadLine()
  12.                 .Split(" ", StringSplitOptions.RemoveEmptyEntries)
  13.                 .Select(int.Parse)
  14.                 .ToArray();
  15.             Stack<int> stack = new Stack<int>(clothes);
  16.             int capacity = int.Parse(Console.ReadLine());
  17.             int sum = 0;
  18.             int numberOfRacks = 1;
  19.            
  20.             while (stack.Count > 0)
  21.             {
  22.                 sum += stack.Peek();
  23.                 if (sum <= capacity)
  24.                 {
  25.                     stack.Pop();
  26.                 }
  27.                 else
  28.                 {
  29.                     numberOfRacks++;
  30.                     sum = 0;
  31.                 }
  32.                
  33.             }
  34.             Console.WriteLine(numberOfRacks);
  35.         }
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment