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

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

We will hold AISing Programming Contest 2021(AtCoder Beginner Contest 202).

We are looking forward to your participation!

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

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

The upcoming ARC , i.e. on this Sunday , clashes with Google Kickstart , Can't it be preponed or postponed?

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

First time I was able to solve more than 3 questions!!

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

How to solve D? Thanks.

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

    Here is what I believed to be a straightforward approach:

    Understand that kth lexicographically shortest string means that there will be $$$total — k$$$ strings that will be lexicographically greater than it. An alternate way of saying that is that you have to leave $$$total — k$$$ strings behind. Let us call this number $$$remaining$$$. It is not difficult to compute that,

    $$$total = nCr(a+b, a) = nCr(a+b, b)$$$
    $$$remaining = total - k$$$

    Now iterate over every position from 0 to n-1, and keep track of the remaining number of a and b. In every position, we have 2 possibilities. Putting either a, or b. Now if we put an 'a' in the current position, how many strings are we immediately getting ahead of? Those many in which there would be a 'b' in the current position, right? That number is,

    $$$nCr(a+b-1, b-1)$$$

    Now, if it is OK to leave behind those many strings, we put an 'a' here, and accordingly update the remaining Else, we put a 'b'. How do we understand if it is OK to put an 'a'? The condition is,

    $$$remaining >= nCr(a+b-1, b-1)$$$

    What if once remaining becomes 0? Well, that means we have no more strings to leave behind. We can then simply create the lexicographically shortest string possible from that position. That is by printing all b's first and then the a's. But it is also fine to go with the flow and check manually as I did.

    Here is my submission following this approach.

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

this is my depth first search for E. I am maintaining a map for every node in which I have kept a count of number of having a distance x from the node.

But I am getting tle on few test cases to help me how to optimize it.

submission link : https://atcoder.jp/contests/abc202/submissions/22827434 vector<map<int,int>> l(nax); void dfss(int u , int p = -1){ for(auto x : edges[u]){ if(x != p){ dfss(x,u); } } l[u][0] = 1; for(auto x : edges[u]){ if(x != p){ for(auto y : l[x]){ l[u][y.first+1] += y.second; } } } }

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

    You can use a count array and solve the queries offline.
    All you need is the euler tour of the tree.
    The entire problem will be solved in linear time. code

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

Wow, I feel so lucky to get the first place! I recently came across a problem very similar to F, which I think might be the reason.

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

    could you explain your thought process for F, I got that we have to use DP somehow with triangle decompositions and the fact that triangle area*2 is integer, but what was the main cracking hint for you for this question.

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

    can you please explain your solution and share the link to a similar problem?

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

Interesting technique for E in the editorial!

I wonder if anyone else answered the queries offline using small-to-large merging (https://codeforces.com/blog/entry/67696). For each node u, we can track the multiset of depths of descendents of u, and use this to answer the queries involving u. Then the multiset for u is the union of the multisets of its children, plus a singleton set with the depth of u. In fact this is almost exactly the same as the linked problem, where the colour of a node is its depth.

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

    I did it offline with small to large merging — https://atcoder.jp/contests/abc202/submissions/22827419

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

    I did the same. Luckily, I had solved a problem with the same technique today itself. I think it can be done with Euler tour+ binary search as well but this way seemed much more easier to code.

    PS.-Just saw that the editorial has much more cleanly implemented the Euler tour method, contrary to my expectations.

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

Wow, there's already a detailed official English editorial (https://atcoder.jp/contests/abc202/editorial). Is that going to be the case for ABCs going forward?

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

Can somebody help me identify my mistake in E? My solution uses the same idea as the one from the editorial. https://atcoder.jp/contests/abc202/submissions/22829588

Edit: I found the issue — I was binary searching for "out[u]" on the out time array... but have to do both binary searches (in[u] + out[u]) on the in time array

https://atcoder.jp/contests/abc202/submissions/22839873

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

    It's been six months. I'll share my approach for E. An easy observation is that we only have to count the # of nodes in subtree of U with depth D from the root. First, find the dfs_order & depths & subtree_size of the tree in one dfs. Then, we can perform offline queries with MO's algorithm to count # of nodes in range with depth D My submission

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

I solved E with the help of merge-sort tree. We can create a pair of entry time and distance for every node and sort them on the basis of entry time. Then after handling some cases (i.e when Di is less than distance of root from Ui.), we just have to count number of values equal to D in the range entry time[u] and exit time[u] for which I used merge sort tree.

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

    __hermit__ can you please share you submission, Thanks!

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

      sure, (A bit ugly code though)

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

i Really dont understand D problem . Can anyone Elaborate more cleaarly . How can we put 'a' in ith place ?

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

Was D harder than usual???

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

Is there any plan for atcoder rounds to be later in the morning (like 7). the usual times (4am, 5am, and at best 6am) are too early for me and presumably other west coasters.

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

Can anyone explain the solution of problem F based on Graham Scan? The editorial Atcoder provided says almost nothing detail about it.

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

    This is my solution on F, hopefully it will be clear enough :)

    Sort the points from the top-most one to the bottom-most one (in case of same y, sort from the right-most to the left-most). Afterwards, apply a "custom convex hull" for each prefix of points in the sorted array (the last point in the prefix is the lowest point in the convex hull). Before convex hull, mind Pick’s theorem. This tells us that we are actually interested in the parity of the number of integer points on polygon’s perimeter.

    Sort the points according to Graham Scan. Afterwards, store dp[i][j][k] — the number of partial polygons starting from the lowest point and ending with the j-i segment, having k = (number of integer coordinates on the perimeter) % 2. In fact, there will be no Graham Scan, but a dp building which can be understood easier if you refer to Graham Scan.

    For building this dp, we will iterate 0 <= k < j < i < n, and update dp[j][i][nr % 2] += power(2, interior[i][j]) * dp[k][j][0] and dp[j][i][(1+nr)%2] += power(2, interior[i][j]) * dp[k][j][1], where nr is the parity of the number of integer coordinates on the j-i segment. Also, interior[i][j] is a coefficient which denotes the number of points which can be taken in the answer set without altering the convex hull containing the i-j segment. This can be precomputed at the beginning of the convex hull. Basically, any k such that i < k < j which is interior to the polygon should be counted.

    Finally, any dp[k][j] (0 < k < j < n), such that k-j-0 is a valid ending of the Graham Scan, can be considered in the final answer. The final complexity for this solution is O(N^4) with proper precomuputation.

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

How to solve F?