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

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

We will hold M-SOLUTIONS Programming Contest 2021(AtCoder Beginner Contest 232).

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

We are looking forward to your participation!

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

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

C++20 support when

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

How to solve C ? I'm just getting WA on one case and AC on the other 21 — Submission sad noises

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

can we solve F with flow.

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

For problem E, how do you find theses DP optimization ideas ?

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

Can anyone explain, how we are getting 4 distinct value from f(k,i,j) and how we are forming those transitions? It would be a great help. Thanks!

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

    "for each k, there are at most 4 distinct values of f(k,i,j)" :

    • case 0 (i=0, j=0): Current row != Dest row. Current column != Dest column
    • case 1 (i=0, j=1): Current row != Dest row. Current column == Dest column
    • case 2 (i=1, j=0): Current row == Dest row. Current column != Dest column
    • case 3 (i=1, j=1): Current row == Dest row. Current column == Dest column

    My submission uses 4x4 = 16 transitions, although some transitions are impossible and can be simplified.

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

My approach for E is different from the editorial, and I'm getting wrong answer on a few test cases. Any help would be much appreciated. Submission: Link

Approach: We are at (x1,y1) and want to reach (x2,y2) after exactly k operations. in one operation we can change either x or y. Let's say that we change x in p operations and y in k-p operations, and let dp1[p] be the number of ways to start from x1 and end at x2 after exactly p operations and dp2[k-p] be the number of ways to reach from y1 to y2 after exactly p-k operations, then I will add C(k,p)*dp1[p]*dp2[k-p] to my answer. (C(k,p) is the number of ways to select p operations that will change x out of the k operations)

Now as far as dp1 and dp2 are concerned. We can precalculate both of then as follows: dp1[i] = (w-1)^(i-1) — dp1[i-1]

dp1[0] is 1 if x1 = x2 and 0 otherwise

dp2[i] = (h-1)^(i-1) — dp2[i-1]

dp2[0] is 1 if y1 = y2 and 0 otherwise

Can anyone point out the flaw in this approach?

Update: nevermind I interchanged h and w.

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

One of the best atcoder contests

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

Can someone explain the solution of problem E.

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

    I solved it using recursive DP. We just have to maintain that the if our current row matches with the final row or not, and our current column matches with current column or not( Actual row and column values don't matter here ,we just need to maintain that they are equal to final ones or not, so we can use 0/1 to denote that) . So currently if we are in same row as the final row, we can go to any other row and it will be equivalent (n-1 such rows) . If we are in some other row, we have two choices, either we can go to the final row or some other row (n-2 such rows). So similarly we can do it for columns. After K moves we can check if our both row and column are equal to final row and column or not. dp will look like dp[2][2][K] and each transition will be done in constant time . So overall Time complexity will be O(K).

    Submission : https://atcoder.jp/contests/abc232/submissions/28006837

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

I did problem D using BFS but getting TLE.Anyone know how to resolve?

Problem link:-Problem-D

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

    I also solved the mentioned problem using BFS but got no TLE. Could you share your submission?

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

      My Submission-HERE

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

        Your function fun is very bad in more than one way (why recursion? why undirected graph when we are only allowed to move right and down?) and can't handle a 100x100 grid filled with '.' because it becomes too slow. You can change it to something like this:

        Spoiler

        But even building an adjacency list is an overkill.

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

    BFS should work just fine for this problem (example). But be sure not to visit the same cell more than once. If this isn't done, then a 100x100 grid filled with '.' would fail with TLE.