Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

kalzor's blog

By kalzor, history, 4 years ago, In English

As the title says I need some help to find some test cases where my solution fails for the problem Cubes Sorting. My logic is simple, I first sort the array in decreasing order, then check if two elements are the same in the array. Then i check if the original array is in strictly decreasing order. If either the original array is not sorted in decreasing order or if there are two(or more) elements with the same value I print out YES else No. My Java Code:-

Spoiler

The logic seems right to me but it is still giving WA.Link to WA Submission 93757010. Any help is appreciated.

Update: Seems like the same code in C++ gives AC 93846515. Is there some error in my implementation of the solution?

Full text and comments »

  • Vote: I like it
  • -17
  • Vote: I do not like it