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

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

We will hold Japan Registry Services (JPRS) Programming Contest 2024 (AtCoder Beginner Contest 339).

We are looking forward to your participation!

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

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

Seems E,F is so difficult

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

Hope AC ABCD.

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

Hello everyone! Is everyone ready to contest? I wish luck to everyone! :)

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

This is my first contest in AtCoder.Good luck for me!

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

If anyone solved problem E, please share your idea after the contest.

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

    I traversed the array and for every Ai , finded the maximum among Ai-d , Ai+d and added 1 to it in the dp array of size 5e5.

    eg. 4 2
    3 5 1 2

    dp array = [0,0,0,0,0,0]
    started with 3 , maximum in dp array among [3-2 , 3+2] = [1,5] is 0 add 1 to it and put it at dp[3] = 1;

    dp array = [0,0,1,0,0,0]
    for 5 , maximum in dp array among [5-2,5+2] = [3,7] is 1 add 1 to it and put it at dp[5] = 2;

    dp array = [0,0,1,0,2,0]
    for 1 , maximum in dp array among [1-2,1+2] = [1,3] is 1 add 1 to it and put it at dp[1] = 2;

    dp array = [2,0,1,0,2,0]
    for 2, maximum in dp array among [2-2,2+2] = [1,4] is 2 add 1 to it and put it at dp[2] = 3;

    dp array = [2,3,1,0,2,0]
    Maximum among this is 3, Hence 3 is the maximum subsequence

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

    We can optimize a dp solution: dp[i] = longest subsequence ending at ith index satisfying conditions

    the transition would be to consider all j < i such that abs(a[j] — a[i]) <= d but we notice that we only need to consider the last j such that a[j] <= a[i] and abs(a[j] — a[i]) <= d and the last j such that a[j] >= a[i] and abs(a[j] — a[i]) <= d

    i used a segment tree to manage these indices

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

    I will try to explain my approach. As the elements are less than 5e5, you can maintain a dp over the element values (not indexes). For a given element x and max adjacent difference d, the element just before x (i.e. the previous element of the subsequence, if any) can be between x-d to x+d. I used a segment tree over the dp array, where the query returns the max value in the range mentioned. Then for the current element x, the max length of subsequence ending at that point will the be max value in range (x-d,x+d) + 1. Iterate over all elements in array and take the maximum as answer. Here's my code for reference: link

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

    you may solve it with tree

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

I AC nothing...

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

Bad one

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

I realized in the end that B is the recursion.

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

    More like simulation really

    • »
      »
      »
      4 месяца назад, # ^ |
      Rev. 3   Проголосовать: нравится -10 Проголосовать: не нравится
      void fun(vector<vector<char>> &a,int n,int x,char d,int i,int j,int h,int w){
      
      if(i==-1){
          i=h-1;
      }
      if(i==h){
          i=0;
      }
      if(j==-1){
          j=w-1;
      
      }
      if(j==w){
          j=0;
      }
      
      if(x==n) return;
      
      if(a[i][j]=='.'){
          // cell is white, paint it black and move it clockwise
          a[i][j]='#';
          if(d=='U'){
             d='R';
             fun(a,n,x+1,d,i,j+1,h,w);
          }
          else if(d=='D'){
              d='L';
              fun(a,n,x+1,d,i,j-1,h,w);
      
          }
          else if(d=='R'){
              d='D';
               fun(a,n,x+1,d,i+1,j,h,w);
      
          }
          else if(d=='L'){
              d='U';
               fun(a,n,x+1,d,i-1,j,h,w);
          }
      }
      else {
      
         a[i][j]='.';
          if(d=='U'){
             d='L';
             fun(a,n,x+1,d,i,j-1,h,w);
          }
          else if(d=='D'){
              d='R';
              fun(a,n,x+1,d,i,j+1,h,w);
      
          }
          else if(d=='R'){
              d='U';
               fun(a,n,x+1,d,i-1,j,h,w);
      
          }
          else if(d=='L'){
              d='D';
               fun(a,n,x+1,d,i+1,j,h,w);
          }
      
      
      
      
      
      }
      
      
      
      
      
      
      
      
      }
      
      
      
      LOL! Sure, here is my recursion. I may have made a simple problem tough to myself.
      Basically, I have also done the simulation, but I chose recursion, I would be happy to know another approach.
      
»
4 месяца назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

C:

Why do input 4 -1 1000000000 1000000000 1000000000 Outputs 3000000000?

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

    start with 1, that's the minimum you can start with, because next stop is -1 and there after it is always positive

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

      Oh,it outputs the number of passengers at the end.

      I outputs the number of passengers at the beginning.

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

I'm writing it. Task E is interesting and easy

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

Trash Round.

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

How to solve E?

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

    Define $$$dp_{a_i}$$$ is the maximum subsequence ends at $$$a_i$$$. Its contributor values are the $$$dp$$$ values that ends in element from range $$$dp_{[a_i - d, a_i + d]}$$$ so we want to find the maximum $$$dp$$$ value within that range and add it by $$$1$$$ (by appending $$$a_i$$$ at the end of it). To get the maximum values of these $$$dp$$$, we can use segment tree

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

    There are many nice variants that hint towards a solution for this one.

    This is a variant of LIS. Longest increasing subsequence is a problem that wants $$$i \lt j, a_j - a_i > 0$$$. Now you can imagine a similar problem where $$$a_j - a_i = D$$$. In this one it is $$$abs(a_j-a_i)<=D$$$. But eventually all variants are done in a similar fashion.

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

    Hints for E: Smooth Subsequence

    Start with the first DP definition that comes to mind.

    $$$dp[i]$$$ is the the maximum length of a smooth subequence ending at $$$i$$$.

    Our desired smooth subsequence has to end at some index. Hence, the answer would be $$$max(dp[i]$$$).

    How to perform transitions? Notice that the candidates for the second last element are $$$j < i$$$ such that $$$|a[i] - a[j] \leq d$$$. Hence, you can naively take contribution from all such $$$j$$$.

    Submission

    Now, If you're a beginner, most of the problems you might've solved so far would have applied DP on indices. However, it's possible to apply DP on values as well. Let's define an alternate DP definition.

    At any point of time, $$$dp[val]$$$ is the maximum length of a smooth subequence whose last element has value $$$val$$$.

    Suppose we insert elements one by one. What happens when you see the $$$i^{th}$$$ element for the first time. When an element enters, the subequences can be divided into 2 disjoint sets, one that ends at $$$i$$$ and the other that doesn't include $$$i$$$. By induction, we can assume that the for the subsequences not ending at $$$i$$$, their DP values would've been populated correctly. Now, how does $$$dp[a[i]$$$ vary? The possible candidates for the second last element are all $$$dp[old]$$$ such that $$$|old - a[i]| \leq d$$$. Hence, you can naively take contribution from them.

    Submision

    For the next part, if you are not familiar with Segment Tree, but understood the alternate DP definition on values, you can consider this problem as solved and come back to it later once you learn segment trees. There's no additional thinking required for the later parts, just blind use of template/library.

    Next, notice that you are taking contribution from a continuous range. More specifically, you are looking for a data structure that can support point update and range maxima. Hence, you can use segment tree to optimize it.

    Submission

    But if the template scares you, you can also use Atcoder Library's Segment Tree.

    Submission

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

Did anyone AC problem G in $$$O(n \log{n} + q \log^2{n})$$$?

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

I think you can just copy G from somewhere else since the problem is so generic lol.

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

How to solve D?

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

    Bfs and you need to keep track of both persons positions.

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

    BFS, there are $$$O(n^4)$$$ nodes, each node represents the positions of both players. $$$dp[x1][y1][x2][y2]$$$ represents the minimum number of movees to get to a state where player 1 is at $$$(x1, y1)$$$ and player 2 is at $$$(x2, y2)$$$.

    Code

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

When solving problem D using BFS (Breadth First Search), how can we ensure we don't traverse back? When we only have one dwarf, we usually use a 'visited' array to indicate whether we have traversed or not. But what about two dwarfs moving in the same direction? What should we do then?

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

    each node is of form x1,y1,x2,y2 so make a 4d array

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

      Is using a 4D array the standard approach for this type of problem? In the competition, I initially thought of using a 4D array, but I'm concerned that this might waste a lot of unused space.

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

    Note that it is always best to not go back to a state where the 4-element tuple $$$(x_1, y_1, x_2, y_2)$$$ has shown up before. $$$x_1, y_1, x_2, y_2$$$ are the coordinates players 1 and 2 have moved to respectively.

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

Can anyone share the idea behind problem F? I couldn't understand the approach mentioned in the video linked in the editorials tab.

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

    If $$$a \cdot b = c$$$, then $$$a \pmod{m} \cdot b \pmod{m} = c \pmod{m}$$$. You can select some prime numbers as $$$m$$$, and check if they are same under those modulo. The more prime number you choose, the chance of collision will decrease.

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

    Multiplication is expensive in that problem. They made it less expensive by picking a random mod and did the same bruteforce algorithm but with smaller numbers.

    I personally can't imagine the probability of collision but I assume when you have very big numbers, it's hard, when multiplied under same mod that their product will collide with some smaller number that you had in your array, given that you only have 1000 numbers in the array. You could probably force it to collide but not under a random modulus.

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

      I saw some people pass F using Python, or you can implement bigint faster by using bitset to obtain the 1 / 64 constant.

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

        I passed it with Python. At some point multiplications get too big (no number is as big as multiplication). You can sort the numbers and break when the biggest number in array is smaller than current product.

        You can also count the bit length $$$l_a$$$, bit length of product is at least $$$l_a+l_b-1$$$. The moment you don't have numbers with a particular bit length, you can also stop.

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

I did D using multiple ways method, but I think I'm not right, can anyone share his/her smart idea

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

    BFS on every state that two player can be.

    the time complexity off this idea is the number of choose 2 cell of (n^2) cell.

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

Either you use FFT/Karatsuba in F or just AC with Python.

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

E easier than D

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

Please stop making big integer problems like $$$F$$$ python people just make fun of cpp people :( like this

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

The Easiest G Ever

Just a model of persistent segment tree

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

This game requires almost no brain power. Just a constant stream of code. I think E and G are both original or extremely similar questions that have appeared elsewhere.

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

    Agreeable

    But I used some silly references on priority_queue which increased my debugging time (will post it later)

    It cost much time that I have no time to solve F

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

trash contest. We don't need to think but we can AC all problem.

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

there is actually a deterministic approach to solve F using python

Spoiler

my solution

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

I think the data of problem F is a little simple, such as the following code: https://atcoder.jp/contests/abc339/submissions/49968092

Input: 3 998244353 998242355 0

Correct output: 5

But that code outputs 14.

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

    But how to hack if you don't know the modulus he set? Even if he doesn't pass this question, he can change to a different modulus and submit and pass this question again.

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

    It's meaningless to hack hashing algorithm in Atcoder contest, especially ABC.

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

What is the difficulity score of Problem D E F based on codeforces rating system?

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

I think it's a trash round. Problem F and G are too easy.

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

It's just the Goodbye 2023 on Atcoder. Imbalanced difficulty, existing problem, letting wrong solutions pass...

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

This is the reason I didn't AK this contest.

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

I'm just wondering, what solution can be used to solve G if the queries can be answered offline?

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

    I didn't solve it online, but I thought of a offline solution with a segment tree. You can sort the queries in descending order for the x values, and as you go through each query, insert the array values that are greater than the current x into the segment tree, then query the range of the segment tree to get the sum of elements in the range [l, r] that exceed the current x. Then you just take the sum of this subarray and subtract the sum of elements greater.

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

    persistent segment tree/wavelet matrix/merge sort tree can solve it online, but when talking about offline query, you can just use a simple point add range sum query segment tree with sweepline to solve it

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

    I've created a tutorial and practice contest to help you understand how to solve it efficiently if the queries could be answered offline.

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

Can Problem E solved with dp + Fenwick Tree?

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

Bad one

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

TemplateCoder.

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

Can anyone tell me why my code only use 78 ms but i have a Runtime Error

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

Can anyone point out the flaw in my logic for Problem D.

Approach :

Start a BFS from each player and maintain the count of no. of jumps in x and y coordinates required for each reachable cell.

Ex : dist1[i][j] --> stores no. of x jumps and y jumps from Player 1 in pair format.

Final answer : maximum of x jumps from player 1 and player 2 + maximum of y jumps from player 1 and player 2 --> for each reachable cell.

Submission : 50020473

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

Why there is still no editorial yet?

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

https://atcoder.jp/contests/abc339/submissions/50118454

Any counter test for this solution of D

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

Hi everyone, Why can't we solve problem D with DFS. I have applied DFS in all the four direction and caching the answer to avoid overlapping subcases. Here is my solution — https://atcoder.jp/contests/abc339/submissions/53169555