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

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

Hello Codeforces!

The Algorithms and Coding Club, IIT Delhi (ANCC) in collaboration with Tryst, IIT Delhi, will host LOCKOUT and would like to invite you all for the same.

Lockout is a bracket tournament where contenders will solve CP problems to earn a higher score and secure their position in the next round. Participants will receive a set of problems to solve within a fixed time frame, with each problem carrying a set number of points. The first participant to solve a problem earns the points. Before the main event, a preliminary round will be held, and the top 16 participants will advance to the tournament.

Lockout Prelims Details:(Online)

The Lockout Prelims will be hosted on the Codeforces platform. The contest will serve as an online preliminary round for an on-site final. It will be an ICPC style 2 hour long contest. The top 16 participants with the highest scores will proceed to the onsite tournament.

Lockout Tournament Details:(Offline)

  • Date & Time : 29-31st March.
  • Duration: 3 hours
  • Mode: Offline
  • Platform: Codeforces and Discord
  • Prize worth: 40k+ INR

Stay tuned for our upcoming CP events, ICPC-de-Tryst (ICPC styled team contest) and Codemod (Project Euler style contest) during Tryst (29-31st March).

UPD : Contest Registration Link : https://codeforces.net/contestInvitation/f0ae7b221f308a925f3be2ec313bfc9ac44d46d1

UPD 2 : Congratulations to the winners!

Global Top 5

Place Participant
1 Ra16bit
2 jtnydv25
3 Kira_1234
4 mohit_jx64
5 IceKnight1093

Prize Winners

  1. jtnydv25 — 5000 INR

  2. Kira_1234 — 3000 INR

  3. IceKnight1093 — 2000 INR

We will be soon contacting the top-16 Indian participants for the onsite round to confirm their participation. In case someone opts out we will be contacting the next available participants for the same.

UPD 3 : Editorial

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

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

As a problem setter, no monkeys were harmed during the making of this contest.

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

why are the offline events clashing so perfectly with asia west?

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

    Our tech fest is scheduled during that time only hence the offline event is also scheduled for the same date :(

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

As a tester, the problems are fun to solve !

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

Keeping prizes for the online prelims is very nice (for people who despise travelling)

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

How does the problem setting for the lockout work? 15 different problem sets or 4 problem sets one for each level?

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

As a problem-setter, I hope you like the problems and enjoy the contest.

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

why are you using unstop for registrations? There might be individuals who do not have an account on it and won't bother to register. Consider an alternative like a Google Form.

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

can the registration date be extended for a day?

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

Missed by one day....

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

We'll be extending the registration deadline to 3 March 2024, 9AM IST.

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

Can we register now?

i come across it just now!

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

Unstop Registration Closed Why?

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

can we have round details? How many questions? their scoring ?

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

Good Luck in the Contest !

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

Will you publish the editorial after the contest?

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

The encoding of letters being in reverse cost me in D :( Submitted one minute late — https://codeforces.net/gym/508320/submission/249492478

Anyway nice problems, D is reed muller(davio) expression. First time using something from my major in a contest.

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

Problem B is a very nice problem with no edge cases to handle, and it doesn't really affect the standings much. Codeforces contests should have more problems like this.

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

    hi

    can you share the solution for problem B.

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

      Basic Idea: precompute the answer for every size $$$k$$$ and answer it during the queries using binary search.

      Now, the cases which we need to handle:

      • For $$$k \gt 2$$$, there can be 4 ways to select the subset of army:

        • select any subarray of size $$$k$$$
        • select any prefix and any suffix, such that sum of them is $$$k$$$
        • select any prefix of length $$$k - 1$$$, and any one extra index
        • select any suffix of length $$$k - 1$$$, and any one extra index
      • For $$$k = 2$$$, all the above cases are included, and one more case: select any two indices

      • Apart from this, you need to be careful while binary search, as the precomputed answer array isn't necessarily sorted, due to the extra case handling when $$$k = 2$$$

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

    are you sure? I tried handling many edge cases , yet failed on TC 29. :(

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

      Had the same issue, note that the precomputed array isn't necessarily sorted, so binary search could give wrong answer.

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

        Oh , now I see , I had handled all the cases , but didnt see that they need not be sorted. Thanks ..

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

is problem C , similar to this? link

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

nice problems

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

If it is ready provide editorial too