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

Автор GDCass1ni, история, 7 недель назад, По-английски
Statement
Hint 1
Hint 2
Hint 3
Solution

UPD Thanks to nonrice and sammyuri, I fix the solution.

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

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

UPD: The time complexity is $$$\mathcal O(n)$$$, which is fast enough.

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

What would your solution do in this case:

$$$a = [101_2, 10101_2]$$$, $$$k=1$$$, $$$x=10000_2$$$

If I understand correctly the solution would see $$$101_2$$$ at $$$a_1$$$, and since it is smaller than $$$x$$$ it would create a partition there. But obviously this is the wrong way since it leaves $$$a_2$$$ part of no segment at all and thus your solution would claim NO. Whereas the correct way would be to include both $$$a_1$$$ and $$$a_2$$$ in the same segment, which means the answer YES.

Response to "UPD":

From my experience (since I commonly have this thought too) when a solution is wrong, figuring "reverse the array" usually doesn't fix anything. Indeed, it's easy to show a case that exemplifies it for the updated solution:

$$$a = [1_2, 10000_2, 1_2]$$$, $$$k=2$$$, $$$x=10001_2$$$

The array is symmetrical so we can ignore the step about reversing. Here, the provided solution creates length $$$1$$$ segments at $$$[1, 1]$$$ and $$$[2, 2]$$$, ignoring $$$a_3$$$. As $$$a_3$$$ is left over, it incorrectly claims the answer is NO.

A DP solution to this problem is quite simple, perhaps you can improve it from there.

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

What about $$$a = [1, 4, 2], k = 2, x = 5$$$. It is clearly possible if you divide into sections $$$[1, 4]$$$ and $$$[2]$$$ which have xor-sum $$$5$$$ and $$$2$$$ respectively. But the greedy algorithm would divide after $$$1$$$ and the remaining numbers $$$4, 2$$$ do not have an xor-sum $$$\le 5$$$, and so it would incorrectly output No.

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

    Bro in the case the length of array is only $$$3$$$, how could you get the segment $$$[1,4]$$$? I can't understand at all xD

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

      I meant the segment with the numbers $$$1$$$ and $$$4$$$ in it, sorry. In terms of array indices the solution is $$$[1, 2]$$$ and $$$[3, 3]$$$.

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

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

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

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

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

You say you fixed the solution, but now what about $$$a = [3, 6, 1, 1, 6, 3], k = 4, x = 5$$$? This is also clearly possible by splitting into sections with indices $$$[1, 2], [3, 3], [4, 4], [5, 6]$$$ with respective xor-sums $$$5, 1, 1, 5$$$, so the answer is Yes. The greedy algorithm on the other hand would split after $$$3$$$, then not split until the second $$$6$$$, meaning it can find a maximum of $$$3$$$ sections, and incorrectly output No. Since this test case is symmetrical, reversing the array and calculating again won't help.

In your hints and solutions, you wrote things like "You could easily prove that." and "think about why.". There's probably a good reason most contest editorials don't contain such statements, instead having actual rigorous proofs. Do you have one for this problem?

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

    My solution is to spilt the segments as short as possible, so it will spilt after $$$2$$$ and work on this test case xD.

    And I really think that the proof is very easy :)

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

      If it splits the segments as short as possible, it will split after index 1, because the segment containing just 3 has an xor-sum less than or equal to 5. I don't know why you are saying it will split after index 2, because at that point the current xor-sum will be 6 (as it has already split after index 1 and started a new segment), so it cannot split at that index. Unless I've misunderstood your solution, in which case please explain exactly how it would split the array in this test case.