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

Автор awoo, история, 2 года назад, По-русски

1644A - Doors and Keys

Идея: BledDest

Разбор
Решение (awoo)

1644B - Anti-Fibonacci Permutation

Идея: BledDest

Разбор
Решение (Neon)

1644C - Increase Subarray Sums

Идея: BledDest

Разбор
Решение (awoo)

1644D - Cross Coloring

Идея: BledDest

Разбор
Решение 1 (awoo)
Решение 2 (awoo)

1644E - Expand the Path

Идея: BledDest

Разбор
Решение (awoo)

1644F - Basis

Идея: BledDest

Разбор
  • Проголосовать: нравится
  • +54
  • Проголосовать: не нравится

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

Approach of D problem was great

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

In problem D why we process the queries backward?

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

    When you process backwards, the query is equivalent to "color all squares in this row and column which are not yet colored". This way, each square will be colored at most once. So now your answer will be $$$k$$$ raised to some power(which is actually the number of queries where at least one square was colored).

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

      I processed all the queries forwards but ended up getting WA, but I am unable to understand how is there a difference between processing it forwards or backwards? Even if we are doing it forwards then, yes it might be possible that some square is getting colored more than once but in the end I am counting the different number of colors for all the squares so that shouldn't make a difference.

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

        For each query you want to determine something that happens in the future — in the later queries. So to tell something about query $$$i$$$, you have to first process queries $$$i+1$$$..$$$q$$$. That is exactly the same as going backwards over queries: you first determine the status of the query, then add the information about it to some data structure.

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

looks legit

upd. already fixed

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

Can anyone help why is this giving me TLE for D 147473308 ?

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

    You have initialized arrays visr and visc of size n and m respectively. Hence your time complexity is O(t*(n+m)) or larger, which in the worst case will be 2*1e9 since there is no limit on sum of m,n over all test cases.

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

      Woah! I was facing the same issue. I would've never figured this out without your comment.

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

Can anyone please explain problem E?

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

No need for FFT in problem since we need only sum of those Stirling's number and this can be done in O(i): Since S(i,j) = sum(1<=t<=j) C(j,t) * t^i * (-1)^(j+t) / j! we have:
S(i,1)+S(i,2)+..+S(i,k) = sum(1<=j<=k,1<=t<=j)( t^i * (-1)^(j-t)/((j-t)! * t!) ).
Let d = j-t, then ans = sum(1<=t<=k,0<=d<=k-t)( (t^i/t!)*((-1)^d / d!) ) iterate over t and sum(0<=d<=k-t) ((-1)^d / d!) can be precomputed

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

    I really like this formula. It is elegant and works under any prime modulo. Thank you for sharing it!

    Here's a more detailed explanation and another way to look at it: Let $$$n \geq 1$$$ be a fixed integer.
    As in tutorial, let $$$p_i = \frac{(-1)^i}{i!}$$$ and $$$q_j = \frac{j^n}{j!}$$$.
    Then $$$S(n, k) = \sum\limits_{i+j=k} p_i \cdot q_j$$$.

    Consider a matrix $$$M$$$ in which $$$M_{i, j} = p_i \cdot q_j$$$ for $$$0 \leq i, j \leq n$$$.
    Then $$$S(n, k)$$$ is the sum of entries on the antidiagonal $$$i+j = k$$$.

    Suppose we want to find $$$S(n, 0) + S(n, 1) + ... S(n, k)$$$ for some $$$k$$$.
    That is to sum the entries above the antidiagonal $$$i+j=k$$$.
    We can sum these values column by column.
    For a fixed column $$$j$$$, the sum is $$$q_j \cdot \sum\limits_{i=0}^{k-j} p_i$$$.
    Thus, $$$S(n, 0) + S(n, 1) + ... S(n, k) = \sum\limits_{j=0}^{k} q_j \cdot \sum\limits_{i=0}^{k-j} p_i$$$.

    To compute this efficiently, note that $$$\sum\limits_{i=0}^{k-j} p_i$$$ is just the sum over a prefix of $$$p$$$.

    My implementation: https://codeforces.com/contest/1644/submission/148117254

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

    I have a question, though. To compute $$$S(i,1)+S(i,2)+...+S(i,k)$$$, the formula requires to find $$$t^i$$$ over $$$t=0,1,...,k$$$. Can this be computed (or precomputed) in $$$O(i)$$$?

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

      Oh I get it.
      We can use linear sieve to find all primes $$$p$$$ and compute $$$p^i$$$.
      For a composite $$$x = a \cdot b$$$, compute $$$x^i$$$ as $$$a^i \cdot b^i$$$.
      This is $$$O(k \log i / \log k) = O(i)$$$

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

C can be done with 2D DP. My submission is linked below 147347109

Note that I only used the custom "getbigger" function instead of the max function because the max function was being annoying for me.

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

Here are two alternate solutions for F. (Neither one uses any prior knowledge about the Stirling numbers.)

Simple no-FFT solution
EGF+ODE solution
»
2 года назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Добавлен перевод разбора задачи F.

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

In problem D, why is the answer equal to k to the power of valid queries that have at least one cell belong to them? I am unable to understand. Why is "to the power"?

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

In problem D, why TLE with vector(int) and AC with vector(bool) , time complexity doesn't change. AC code with bool,
TLE code with vector

UPD: People already answered this in Announcement for this contest

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

As for problem F, I think the solution described in the tutorial is in $$$O(n\sqrt{n}\log n)$$$ time complexity, because we have $$$O(\sqrt{n})$$$ $$$\lceil\frac{n}{i}\rceil$$$ s, and calculating each of them takes $$$O(n\log n)$$$. But the solution of F says it takes $$$O(n\log^2n)$$$, am I wrong or the tutorial made a mistake? Can anyone help me?

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

    The polynomial describing $$$A_i$$$ has $$$\min(i, k) + 1$$$ terms, so the complexity of calculating $$$A_i$$$ is $$$O(i \log i)$$$ and the total complexity is $$$\sum \limits_{i = 1}^n O(\frac n i \log \frac n i) = O(n \log^2 n)$$$.

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

I am doing question D the same way, but getting a wrong answer. I have used a set to store the rows and columns and then proceed with the maximum size among the two. Can anyone help me out, please? Link for my solution: https://codeforces.com/contest/1644/submission/155271519

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

My submission for problem D. https://codeforces.com/contest/1644/submission/157867234 Anybody please tell me where and why the code fails