Advertisement
countDecko

Untitled

Feb 14th, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. 11. *Array Manipulator
  2. Trifon has finally become a junior developer and has received his first task. It’s about manipulating an array of integers. He is not quite happy about it, since he hates manipulating arrays. They are going to pay him a lot of money, though, and he is willing to give somebody half of it if to help him do his job. You, on the other hand, love arrays (and money) so you decide to try your luck.
  3. The array may be manipulated by one of the following commands
  4. • exchange {index} – splits the array after the given index, and exchanges the places of the two resulting sub-arrays. E.g. [1, 2, 3, 4, 5] -> exchange 2 -> result: [4, 5, 1, 2, 3]
  5. o If the index is outside the boundaries of the array, print “Invalid index”
  6. • max even/odd– returns the INDEX of the max even/odd element -> [1, 4, 8, 2, 3] -> max odd -> print 4
  7. • min even/odd – returns the INDEX of the min even/odd element -> [1, 4, 8, 2, 3] -> min even > print 3
  8. o If there are two or more equal min/max elements, return the index of the rightmost one
  9. o If a min/max even/odd element cannot be found, print “No matches”
  10. • first {count} even/odd– returns the first {count} elements -> [1, 8, 2, 3] -> first 2 even -> print [8, 2]
  11. • last {count} even/odd – returns the last {count} elements -> [1, 8, 2, 3] -> last 2 odd -> print [1, 3]
  12. o If the count is greater than the array length, print “Invalid count”
  13. o If there are not enough elements to satisfy the count, print as many as you can. If there are zero even/odd elements, print an empty array “[]”
  14. • end – stop taking input and print the final state of the array
  15. Input
  16. • The input data should be read from the console.
  17. • On the first line, the initial array is received as a line of integers, separated by a single space
  18. • On the next lines, until the command “end” is received, you will receive the array manipulation commands
  19. • The input data will always be valid and in the format described. There is no need to check it explicitly.
  20. Output
  21. • The output should be printed on the console.
  22. • On a separate line, print the output of the corresponding command
  23. • On the last line, print the final array in square brackets with its elements separated by a comma and a space
  24. • See the examples below to get a better understanding of your task
  25. Constraints
  26. • The number of input lines will be in the range [2 … 50].
  27. • The array elements will be integers in the range [0 … 1000].
  28. • The number of elements will be in the range [1 .. 50]
  29. • The split index will be an integer in the range [-231 … 231 – 1]
  30. • first/last count will be an integer in the range [1 … 231 – 1]
  31. • There will not be redundant whitespace anywhere in the input
  32. • Allowed working time for your program: 0.1 seconds. Allowed memory: 16 MB.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement