gomu's blog

By gomu, history, 6 years ago, In English

I am trying to solve the problem 982 D — Shark. I am unable to figure out why my Solution is giving wrong answer. Can anyone help me find why I am getting a Wrong Answer? Thank You in advance.

I have used the par(), mergeSet() functions and sz, se arrays to implement the Disjoint Set. My approach is to rebuild(using array color for the same) the array after sorting and maintaining the number of segments using a map and trying to find what minimal value maximizes the number of segments.

EDIT:- I found the error, I had assumed wrongly that elements of a map would be sorted based on the second key rather than the first key and which was causing the error. I got the problem accepted.

Full text and comments »

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