Блог пользователя Ferrarixxx

Автор Ferrarixxx, история, 4 года назад, По-английски

Hi, Thanks for opening this Link :)

Here's the Problem Link: Problem D Link
My Submission Link: Please Click Me

I have Commented my logic which is almost same as that of editorial Very simple

Thanks For Reading

Hoping for a Prompt Reply.

  • Проголосовать: нравится
  • -16
  • Проголосовать: не нравится

»
4 года назад, # |
Rev. 3   Проголосовать: нравится +8 Проголосовать: не нравится

Bro I was not able to catch the mistake, but I got a test case where your code failed.

Spoiler
  • »
    »
    4 года назад, # ^ |
    Rev. 3   Проголосовать: нравится +5 Проголосовать: не нравится

    here is a smaller one.

    Spoiler

    ans = 2 your ans = 3

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится +1 Проголосовать: не нравится

      I Have Corrected My code for handling this case
      I had to take Consecutive R starting from first occurance of L

      Like in this case
      RRLLRR
      MY code will start from 0th index
      But it should start processing from first R after any L segment
      i.e from 4th index (O based indexing)

      Still getting WA on 33 Test case WA 33 TestCase

      I have submitted my code to find this case but it hasn't been evaluated uptill now

      Thank You For your Support

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится +1 Проголосовать: не нравится

      Finally Got AC

      Thank You CodeForces Community and Danish_amin_01