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

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

We will hold AtCoder Beginner Contest 206(Sponsored by Panasonic).

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

We are looking forward to your participation!

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

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

How to do F ?

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

    We can assign Grundy values to each game. Let's denote $$$g(x, y)$$$ as the Grundy value corresponding to the game where all intervals lying entirely in $$$[x, y)$$$ are considered. We find:

    $$$ g(x, y) = \text{mex over all values }g(x, l_i) \oplus g(r_i, y) \text{ where }r_i \leq y\text{ and }l_i \geq x. $$$

    Alice wins if $$$g(1, 100) > 0$$$ otherwise Bob wins.

    Code

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

      Hey, just a small request...

      I tried to solve F (https://atcoder.jp/contests/abc206/tasks/abc206_f) by DP.

      This is what I tried.

      My understanding for intersecting is, Two intervals A, B are said to intersect if there is atleast one real number x such that x belongs to both A and B. (i.e. intervals which lie completely within each other do intersect).

      With this definition, I tried the following logic. First for each position from 1 to 100 note the end positions of the interval starting from that position. Similarly find the minimum end position of all the intervals starting at or after the current position.

      Then do a reverse dp (states 0, 1 : 0 -> considering all the intervals starting from >= current position, whether the 1st player can win. 1 -> considering all the intervals starting from current position (only this current position), whether the 1st player can win).

      The transition is for all the intervals starting from current position, dp[i][1] = dp[i][1] | !dp[end_position][0]. Then For j from i until the minimum end position -1, dp[i][0] = dp[i][0] | dp[j][1]

      https://atcoder.jp/contests/abc206/submissions/23636854

      I could not think of a case where it fails. Could you please suggest a case where it does not work ?

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

How to use Mobius inversion to find the number of coprime pairs in [L,R] ?

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

    The idea is from this problem, instead of taking input make a array with element [L,R]

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

    You can also use the idea stated here : https://math.stackexchange.com/questions/218890/how-many-numbers-in-a-given-range-are-coprime-to-n

    I implemented this and it works well within time-limits

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

      Btw, what is the upper bound on the number of distinct prime factors of any integer N (something that we can generally assume while solving problems)?

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

    for finding coprime pairs between [L,R] you can iterate over i=[L,R] range and get all factors of i use principle of inclusion and exclusion to get number of coprime with i which lies in range [1,R] and subtract coprime which lies in range [1,L].

    Finding coprime in range using inclusion and exclusion principle link

    Atcoder Solution Link

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

      But how would $$$(R - L + 1) * 7 * 2^7$$$ fit in the constraints. As integer $$$i$$$ at worst case could be a product of at max $$$7$$$ primes.??

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

        it is 10^6*max(2^7,sqrt(10^6)/2) = 5*10^8 which passes in 1.5 sec for me. Definitely it is tight solution.

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

        I guess on average, there are not that many numbers with 7 distinct primes, for instance, the smallest number that is a product of 7 distinct primes is 2*3*5*7*11*13*17 = 510510, so the amortized analysis of the time complexity would be less than that.

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

What's the Idea behind D ?

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

    The idea was to find the sum of depths of all connected components.

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

    Create edges between all $$$s_{i}$$$ not equal to $$$s_{n - i - 1}$$$. The answer is the sum of $$$size - 1$$$ for each connected component.

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

D : Observation + Graph

Make all a graph on all pairs of numbers which are not equal in a string palindromically. i.e. all pairs s.t. : s[i]!=s[n-1-i]

Now find size of connected component and add sz — 1 to answer because we pick a number, and make atleast sz — 1 operations to make all other numbers in that component equal to that number.

Code

E using Mobius :

Idea : Tot pairs — (pairs with atleast one element = gcd) — coprime pairs(apply mobius here)

Corner case : When L = 1 we subtract it twice so we need to add 2*R — 2 once to ans.

Code :

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

For E what I did

Ans=Total Pairs- pairsHavingGcd1- 2*(pairs(x,y)having gcd=x)

  • n=r-l+1

  • Total Pairs = n*(n-1)

  • pairs having gcd1=https://www.geeksforgeeks.org/find-the-number-of-pairs-such-that-their-gcd-is-equals-to-1/

  • pairs(x,y)having gcd=x, iterate for every number(i) from max(2,l) to r-1 keep on adding r/i — 1

  • 1 is subtracted for the pairs having same no. like (2,2)
  • max(2,l) because if we use 1 then it will be subtracted twice as we have already counted it while calculating gcd==1

  • since (x,y) and (y,x) needs to be counted therefore multiply by 2

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

In the last 3 ABCs, the problem F are very educational which is great.

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

Educational screencast. Slow, detailed explanations. Three different solutions for B, two different solutions for D. AC on F during the last minute. HD soon

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

physics0523 when you write a contest, do you try to include physics problems whenever possible? Just curious because I'd love to solve some physics (kinematics based geometry) problems.

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

https://atcoder.jp/contests/abc206/submissions/23628260

pls tell what is wrong in this D sol?

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

Hey Could someone help me on why i am getting wrong answer on F ? I tried thinking for case on where it would fail but cannot seem to fine.

My understanding for intersecting is, Two intervals A, B are said to intersect if there is atleast one real number x such that x belongs to A and B.

With this definition, I tried the following logic. First for each position from 1 to 100 note the end position of the interval starting from that position. Similarly find the minimum end position of all the intervals starting at or after the current position.

Then do a reverse dp (states 0, 1 : 0 -> considering all the intervals starting from >= current position, whether the 1st player can win. 1 -> considering all the intervals starting from current position (only this current position), whether the 1st player can win).

The transition is for all the intervals starting from current position, dp[i][1] = dp[i][1] | !dp[end_position][0]. Then For j from i until the minimum end position -1, dp[i][0] = dp[i][0] | dp[j][1]

https://atcoder.jp/contests/abc206/submissions/23636854

Could you please suggest a case where it does not work ?