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

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

This year there will be two separate online qualifier rounds for the two regionals.

The contest for Mathura is from 2pm to 4pm IST on 18th March 2023. Link
The contest for Amritapuri site is from 8pm to 10pm IST on 18th March 2023. Link

Let's use this blog to discuss the rounds after they end.

Hope to see you all on the leaderboard.

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

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

Best of Luck everyone!

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

Kanpur Mathura prelims has to be the worst ICPC contest, probably ever. Imagine setting 4 problems for a team of 3, and so easy that all of them could easily be solved in $$$\lt$$$ 20 minutes total. And then to add icing on the cake the penalty for a single wrong submission is 20 minutes as well

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

Was this ICPC qualifier or leetcode contest? 0_0

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

speedforces

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

Can anybody tell why this got TLE?

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

If you take 10 lakh rupees as cumulative fees for just the prelims, it is just downright shameful coming up with such a problemset. Probably should reassess whether your priority is advancement of CP or just a pitiful money grab

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

Refund.

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

Can someone please tell me why this got TLE ?

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

    You can't rely on 2d-vectors where your complexity is $$$\mathcal{O}(N^2 \cdot T)$$$ which is probably $$$8 \cdot 10^8$$$ iterations, with time limit of 3s.

    Use 2d-arrays instead.

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

How to make a 1600 rated problem 1800.

Give input in floating points.

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

Speedforces af.

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

worst contest I have seen

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

Preparing for ICPC prelims:

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

Can anyone give a testcase that fails this code for B? Cannot understand what is wrong with this approach.

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

What happened to that tradition of ICPC where one problem is solved by all teams and one problem is not solved by any team Why having prelims as div 69420 contest

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

How many teams will be selected from each institute ?

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

Kanpur regionals qualification rules have been updated here

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

Does anyone know how many slots are there for Mathura Regionals?

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

Why is nlogn solution giving TLE for XOR sort?

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

    For me it didn't

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

      This gave TLE

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

        #define endl "\n"
        195 ms

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

          I’m jumping off the terrace

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

            after 1st tle even optimized it to o(n), still didn't make it. Our team is jumping off too.

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

How to solve central subset?

link

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

    Centroid decomposition ig

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

    Let sz(x) mean the size of the subtree rooted at x. Formally $$$sz(x) = 1 + \sum sz(v)$$$ for all children $$$v$$$ of $$$x$$$.

    Choose an arbitrary root and walk through the tree normally with a dfs calculating values of $$$sz$$$. For any node where $$$sz(x) \geq \sqrt{n}$$$, add $$$x$$$ to the subset and consider $$$sz(x) = 0$$$ for further calculations.

    Why does this work?

    • For any child $$$v$$$ of $$$x$$$, $$$sz(v) \lt \sqrt{n}$$$, so the distance between any node in this subtree from $$$v$$$ must also be $$$\lt \sqrt{n}$$$. Since $$$v$$$ is a child of $$$x$$$, the distance of any node in the subtree from $$$x$$$ is $$$\lt \sqrt{n} + 1$$$ or in other words $$$\leq \sqrt{n}$$$.

    • Since $$$sz(x) \geq \sqrt{n}$$$ whenever we perform this, we add at most $$$\frac{n}{\sqrt{n}} = \sqrt{n}$$$ nodes to the subset.

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

    1) Pick any spanning tree and root at node $$$1$$$.

    2) Pick the node having the max depth, go up $$$\sqrt{n}$$$ for that node following parents, push this one in the answer, and remove that subtree.

    3) Do step 2 until the tree is not empty.

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

Kudos to Amritapuri online round setters, it felt like a fairly nice and balanced round (except for maybe a bit of an aggressive difficulty jump after the first problem). I really liked how cute the solution to problem A is.

Not at all biased by rank 11 in Amritapuri qualifier vs rank 227 in Mathura qualifier :P

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

    Yeah Amritapuri was relatively better, getting a lower rank didn't hurt in Amritapuri but it did in Mathura ;(

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

What are the qualification rules for amritapuri?

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

Did anyone manage to get non-TLE with $$$n \sqrt{n}$$$ on A?

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

Will there be additional system testing on the Amritapuri prelims?

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

For the mathematicians and physicists problem of amritapuri region we did dp ( very similar to this problem), but got mle even after replacing 2 d input array by a map of pairs.Any suggestions?

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

    For each L you can find the smallest R by binary search and if L,R is good then L,(R+1) is also good.

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

      Could you please elaborate your checker function of binary search

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

        So for checking if a subarray is good after removing [l,r] you need to count the f(rem) array, for that you can take the contribution of each bit for example if ith bit is set in k subarrays then the contribution will be 2^i*k for finding the number of subarray that has ith bit set you can do is total_subarray-number_of_subarrays_where_ith_bit_is_off. For achieving this you can keep some prefix suffix arrays.

        Refer this code for solution: here

        PS: Sorry for my alien language :(

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

Kanpur-Mathura Online Qualifier Round unofficial list here. (made by me :))

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

    What are the numbers next to the college name? The number of teams qualifying?

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

      Nope, they're just the count, stating the no of times that college is present in under 100.

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

    Our team has rank 45 from Kanpur-Mathura and we are the 2nd team from our college and the 1st team has rank 10 so do we stand a chance for regionals

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

Are qualification rules for Amritapuri same as last year? Can more than 3 teams qualify from an institute?

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

Any ideas as to when the results would be announced? As the regional dates are close approaching, and most of us would need to book flights to get to Bangalore/Amritapuri.

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

gwalior pune region info anyone

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

When will mathura region results gonna be declare?

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

    today or tomorrow, there are 150 seats

    Source — codedrills telegram channel

    (someone claimed to got reply from icpc mathura-kanpur via email )

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

      The guy who said on telegram : "Source: Trust me bro"

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

      150 seats, r u serious?? Haha, According to Kanpur max to max 70-80 seats.

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

        Yeah the seats in kanpur will be 70-80 but the combined seats of kanpur mathura should be atleast 130

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

          It's not a combined regional site. It's only Mathura where the regionals are going to be held as per my knowledge.

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

            Actually it's clearly mentioned on the icpc kanpur-mathura page that the contest is jointly hosted by GLA University,Mathura and CSJM University,Kanpur.

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

can someone share official telegram link for mathura regionals?