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

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

We will hold AtCoder Beginner Contest 185.

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

We are looking forward to your participation!

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

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

5 min left to start !

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

40 seconds left.....

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

Am I the only one who felt C and F were too classical problems? :/

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

    no

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

      Then, I think they should not include these kind of problems because they are just basic.

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

        Then, I think they should not include these kind of problems because they are just basic.

        Then you need to learn the basics.

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

          I mean what's the point if they are only giving problems whose solutions are already known to people? (They don't even need to think) They are pretty standard problems.

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

            I mean what's the point if they are only giving problems whose solutions are already known to people? They are pretty standard problems.

            Do you know all the solutions? If not then it is a good way to learn about the standard problems. It is already mentioned that this is a beginner contest and it is a great opportunity to apply those standard techniques. Then what is the problem?

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

              I'm not talking about all problems but three of them are(C,E,F) and I understand that this is a beginner contest but does that mean that you will give questions which are one google search far from the solution? And if yes, then there is no point of giving such contest because one can practice that stuff at Leetcode, GFG etc. also.

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

                E was a very good standard problem with a twist. Really a very good problem.

                C was good at its place. It needs basic DP or Combinatorics knowledge.

                You can say F was too standard and I also agree with that.

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

    Not sure of C but F was for sure

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

    E and F were also classical common problems !!

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

    F was basically editing the merge function in my segment tree template

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

How solve F ??

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

How to do E?

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

    Problem E can be solved using DP . Following is transition formula (based on if we want to pair index n with m or we want to discard index n or we want to discard index m) :

    transition

    where n is index of array a and m is index of array b . Base case is when n is equal to 0 or m is equal to 0 . If n=0 then we need to discard prefix of length m in array b .

    submission .

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

    just calculate the edit distance between A and B.

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

    It simply reduces to the classical Edit Distance problem. Try to prove it yourself.

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

    I use dynamic programming for solving E. Starting from the left if both elements are equal then you don't need to do anything otherwise do one of the three:
    1. remove element from first array.
    2. remove element from second array.
    3. don't remove any just count 1 as penalty for element being not equal.

    If reach at the end of any array remove remaining elements from the other array.

    ll solve(ll ar1[],ll ar2[],ll i,ll j,ll n,ll m) {
        if(i == n) {
            return m-j;
        }
        if(j == m) {
            return n-i;
        }
        if(dp[i][j] != -1ll)
            return dp[i][j];
        if(ar1[i] == ar2[j]) {
            return dp[i][j] = solve(ar1,ar2,i+1,j+1,n,m);
        }
        return dp[i][j] = min({solve(ar1,ar2,i+1,j,n,m),solve(ar1,ar2,i,j+1,n,m),solve(ar1,ar2,i+1,j+1,n,m)}) + 1;
    }
    
»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

How to solve C ??

I solved D but not C

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

Does anybody know how to solve the E question? I tried longest common subsequence approach but got WA.

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

Here's an unofficial editorial .

Problem A : Just take the min of given 4 values

Problem B : Just take the difference of consecutive numbers and alternatively subtract and add. Code

Problem C : One of the simple solution is DP.

Let dp(x,y) is number of ways to cut x, into y pieces then our required result is dp(l,12);

The recurrence is

dp(x,y) = dp(x-1,y) + dp(x-1,y-1); // you cut a piece of 1 from prefix or you don't cut

The base cases

if(x==y) dp(x,y) = 1; // all pieces of 1
if(x<y) dp(x,y) = 0; // you can't have cuts
if(y==1) dp(x,y) = 1; // don't cut anywhere 

Code

Problem D : Sort the given array A, if the first element is not 1, or last is not n, append them.

Store the differences between consecutive elements in a vector. 
Pick the smallest as k, and now to paint a length l, you need l/k + (if(l%k!=0)?1:0)

Code

Problem E : This was just a simple variaton of standard LCS.

If we denote dp(x,y) = result for the suffix A[x..n-1] and B[y..m-1] assuming 0 based indexing 
then our required result is dp(0,0)

The recurrence is 
dp(x,y) = min(dp(x+1,y),dp(x,y+1)) + 1;  // delete in A or B
if(a[x] == b[y]) dp(x,y) = min(dp(x,y),dp(x+1,y+1)); // keep both
else dp(x,y) = min(dp(x,y),dp(x+1,y+1)+1); // keep both as a mismatch 

Also, the base case , 
if(x==n or y==m){
	dp(x,y) = (m+n)-(x+y); // if only one array has elements left, you have delete all 
}

Code

Problem F : That's just a standard segment tree with point update queries. Code

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

    C is also l - 1 choose 11 because we have l - 1 choices and have to select 11.

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

    Main problem in E is to get your head arround what the problem statement asks for.

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

    it should be obvious to many, but if someone feel confused by, dp(x,y) = dp(x-1,y) + dp(x-1,y-1); you cut a piece of 1 from prefix or you don't cut

    read this, just ordered the expression as in text

    dp(x,y) = dp(x-1,y-1)+ dp(x-1,y) ; you cut a piece of 1 from prefix or you don't cut

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

somebody tell me how to solve B. as i m beginner .

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

I solved A,B,D,E,F but was not able to solve C. Any hint would be appreciated.

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

Can we solve problem F using SQRT decomposition? , although I solved using seg tree, still can we solve it?

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

    With segment tree it is O(nlogn), with SQRT aka Mo it is O(n sqrt(n)), which is more, but still could fit the timebox.

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

F — Segment tree Implementation

Can someone help find the mistake ?

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

Approach to problem F: goto geeksforgeeks, copy the solution , edith for input and submit. Wooooow, you solve a problem with 600 point. Fuck.........

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

In problem B, the statement was not clear to me although I solved it after looking at the examples. It said that "Determine whether he can return home without the battery charge dropping to 0 on the way.", so it meant that we have to determine battery charge dropping to 0 when he was on his way home after visiting M cafes?

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

    There are two possible interpretions: Drop to 0 at any point of time, or in the end. So that is what the examples for, we have to interpret them if not sure.

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

How to solve E using LCS? My logic is given below

common_elements = lcs(arr, brr, n, m); [calculate number of common elements using LCS]

y = min(n, m) — common_elements; [number of elements in the array which are not equal arr[i] != brr[i]]

x = max(n, m) — min(n, m); [numbers you have to delete to keep the length of both arrays same]

mySolution

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

    For the test case :

    5 5
    1 0 9 2 4
    1 2 8 7 4
    

    According to the question, X would be 0 and Y would be 3. Your code would return 2 whereas the answer should be 3 or am I wrong in understanding this...?

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

I couldn't find the bug in my implementation of segment-tree for F. Please help. Code

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

    I think you have not read the question properly. For every 1 type query, you have to replace a[x-1] with a[x-1]^y, not with y

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

My solutions to this contest, along with detailed explanations of the solutions, can be found here :)

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

is there any way to get editorial of this contest as i am not able to solve 3 question and i want a editorial for it is there a way.

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

I have written an unofficial English editorial.you can find it here..

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

can someone explain segment tree in PF?

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

Can anybode see what is wrong with my code?

My idea is to first swap the two array to make array $$$a$$$ has less or the same amount of numbers than array $$$b$$$. I observe that it is optimal to not deleting any number from array $$$a$$$, since if $$$|A'|<|A|$$$, we can add a number to the end of each of array $$$a$$$ and $$$b$$$ and $$$x$$$ will decrease by $$$2$$$ while $$$y$$$ will only increase by at most $$$1$$$. Then, I use DP, for which $$$dp[i][j]$$$ is the minimum value of $$$x+y$$$ when we only consider the first $$$i$$$ value of array $$$b$$$ and the first $$$j$$$ value of array $$$a$$$. The answer is $$$dp[m][n]$$$.

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

    Check this test:

    4 3
    1 1 2 3
    2 3 1
    

    It's better to delete $$$A_1$$$, $$$A_2$$$ and $$$B_3$$$ with cost = 3. Your code prints 4.

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

      Got it. Thanks!

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

      I also have a similar kind of problem. Could you please help.

      Code Link

      I understood from your test case, that what I was doing wrong. But, can we not iterate over all the "subsequence sizes", and fix it ?

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

Just my feedback I think this round was way easier than general. Actually the difficulty of all A-F in this round should actually be A-D, and E, F need to be a bit challenging, requiring more thinking for beginners to be challenged. D was also quite easier more like B. Thank you!

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

Can someone help me with this solution of D https://atcoder.jp/contests/abc185/submissions/18768487 ?

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

How to approach D problem? Help me, please!

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

    The idea is that we want to use the biggest k possible, because then we need to use the stamp the minimum number of times.

    On the other hand, k must not be bigger than the smallest consecutive segments of blue cells, because if it is bigger, then we cannot use the stamp on that segment.

    So we choose k as the number of cells in the smallest such segment, and then count foreach segment how often we need to use the stamp.

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

Would anyone be able to find the problem in my code for the segment tree in F? My implementation

It is being accepted on samples but failing in randomized tests. Thanks

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

    You forgot to update arr after 1st type of operation. Just add arr[x-1] ^= y; after updateTree and you'll get AC.

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

      Shouldn't I just be updating my segment tree array tree with the update query? It's being updated at - tree[ind] = val in one of the updateTree cases. Moreover, val ,that I passed was equal to arr[x-1]^y Shouldn't that be enough? Thanks for looking into it...

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

        Consider two update queries for the same index x. You pass arr[x-1]^y, but then never update arr[x-1], so in the next update query with this index, you will XOR with the initial value itself.

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

If anyone is interested, I streamed my virtual participation & explained the solutions after, you can find the upload here: https://youtu.be/PLIm4jYYaHk

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

Why can I post the editorial? Is it a bug or a feature?

I was curious about the "post editorial" button and tried to write one, but it somehow appeared where the official editorial should be.

Should I delete it?

Upd: It seems that all users with a rating more than 2000 have the access.