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?

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

| Write comment?
»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

If you write your code in IntelliJ Idea, it shows a warning about objects comparisons. Don't ignore warnings. Idea is smarter than you. Make sure you have a green icon in the top-right corner of the editor before submit.