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

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

Hello Codeforces,
Competitive Programming Club, AIT Pune is excited to invite you to CoDeft 2.0 which will take place on Monday, April 18, 2022 at 21:00 IST. This contest will be an ICPC styled contest to provide an exciting learning platform to showcase your CP skills.

Many thanks to all the people who made this contest possible:

This event will be held in 2 stages:

Qualifiers

Finals

  • Date: Saturday, April 30, 2022
  • Participation: Individual
  • Mode: Onsite, Top 100 participants from online qualifiers will be called for onsite finals at AIT, Pune.
  • Participants reporting for onsite finals will have three events CodeRed, Bug-Off and Retracer to take part.

Prizes and Goodies

Qualifiers

  • Top 25 Indian participants will receive goodies, delivered to their addresses.
  • 5 Random Indian participants from the top 300 will receive goodies, delivered to their addresses.
  • 5 Random 1st and 2nd-year students from AIT will receive goodies.

Finals

  • All the onsite finalists will receive a CoDeft T-shirt + Goodies.

  • Event Winner Runner Up
    CodeRed 10,000/- INR 6,000/- INR
    Retracer 5,000/- INR 3,000/- INR
    Bug-Off 5,000/- INR 3,000/- INR
  • Goodies for the top 7 participants on the leaderboard in all the 3 events separately.

Don't forget to register to be eligible for goodies and prizes — Link
Join Discord Server for regular updates — Link

codeft-codeforces

Good luck, see you on the leaderboard!

UPD : Contest starts in 15 mins. All the best!!

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

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

Auto comment: topic has been updated by unstoppable_N (previous revision, new revision, compare).

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

Where will I get the link for the contest?

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

Auto comment: topic has been updated by unstoppable_N (previous revision, new revision, compare).

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

Reminder : Online Qualifier starts in 15 mins. Hoping to see you all in the leader-board.

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

tfw when u are doing multiset.erase(variable) for 45 minutes

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

Was F related to matrix exponentiation?

»
4 года назад, скрыть # |
 
Проголосовать: нравится -7 Проголосовать: не нравится

Why is the form not accepting responses?

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

Was D related to some kind of dp?

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

In country planning, we just had to find the diameter of each component, sort them in reverse order and then had to make 4 cases right? cnt(no of components)= n, 1,2 and >2 for cnt == n ans=1, for cnt == 1 ans = (d1+1)/2, for cnt == 2 ans = (d1+1)/2 + (d2+1)/2+1, for cnt > 2 ans = max((d1+1)/2 + (d2+1)/2+1,(d2+1)/2 + (d3+1)/2+2). where d1, d2 and d3 are the largest diameters(d1>d2>d3)

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

Looks like E was this problem verbatim and F was this but with implementation issues in the intended solution. I wonder how the sole person who got AC on F solved it, since most people were getting multiple WAs (it was somewhat suspicious too).