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

Автор chokudai, история, 5 лет назад, По-английски

We will hold AtCoder Beginner Contest 140.

The point values will be 100-200-300-400-500-600.

We are looking forward to your participation!

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

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

.

»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by chokudai (previous revision, new revision, compare).

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

How to solve E?

D — Let a be the number happy people initially, answer would be min(n-1, a+2*k) because at every step you increase at most 2 happy people.

F — Just simulate the process greedily. Start with the maximum produce the second maximum with it then 3rd and 4th maximum using 1st and 2nd respectively. At any step, if it is not possible to then answer is No else Yes. Submission

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

    Can you explain sample test case 3 of problem D?

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

    To solve E you can iterate all the i that in some array the second largest is i

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

      if i appear at is[i] you need to find the nearest j that bigger than i in the left and second nearest k in the left also the nearest and the second nearest in the right

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

    Please send a link to your submission.

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

    For F, I used the same thing you said: simulated the process using priority_queue but got WA. Here's my submission: Submission

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

    For every element $$$x$$$ ,try to calculate $$$t(x)$$$ ,the number of intervals which $$$X_{L,R}=x$$$ .

    The answer is $$$\sum_{x=1}^n x\cdot t(x)$$$ .

    If $$$a_p=x$$$ ,let $$$pre1$$$ be the largest $$$i$$$ that $$$1\le i<p,a_i>a_p$$$ ,and $$$pre2$$$ be the second largest $$$i$$$ .

    Let $$$suf1$$$ be the smallest $$$i$$$ that $$$p<i\le n,a_i>a_p$$$ ,and $$$suf2$$$ be the second smallest $$$i$$$ .

    Then $$$t(x)=(pre1-pre2)\cdot (suf1-i)+(suf2-suf1)\cdot (i-pre1)$$$ .

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

      Can you share the code?

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

      too good! but i had problem in implementation when pre2 doesnt exist. can you help me with it ?

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

        Well,as you can notice in my code, $$$pre1-pre2$$$ means we that can choose $$$pre2<L\le pre1$$$ .

        So if $$$pre2$$$ doesn't exist,we set $$$pre2=0$$$ ,then the inequality is $$$1\le L\le pre1$$$ ,which means we can choose any $$$L\le pre1$$$ .

        Similarly,we set $$$suf2=n+1$$$ when it doesn't exist to avoid discussion.

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

      May I ask what is the complexity of this solution? If you do this for all n, each of which results in a linear scan, would the solution be quadratic? Thank you so much!

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

        I use binary search and segment tree to calc them.My code.

        The complexity of the solution is $$$O(n\log^2 n)$$$ .

        I guess there's a linear approach,but I haven't got it yet.

»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

problem D, why the output in the sample input #4 is 7 instead of 6, thanks in advance

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

    If you consider one based indexing then change the 4th indexed 'L' and 6th indexed 'L' then the string will be RRRRRRRLL and number of happy people will be 7.

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

    You swap the two left L into R, then result is RRRRRRRLL, whichs value is 7.

»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I found some problems harder to understand than usual.

Needed like 30 minutes to get the fact that L turn to R and vice versa in D, not just the possitions swap.

I understood the way of reproduction in F after the contest, not within.

»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

What's wrong in this submission for F?

»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Problem F:why I get WA on test_69 and test_71 in this submission?

Could someone help me?

»
5 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

When would be editorial published for English readers? And also where is the link of English editorial provided?