srijan_2002's blog

By srijan_2002, history, 3 years ago, In English

Greetings Codeforces,

Team Aavishkar, NIT Durgapur invites you to take part in the 7th edition of CodeCracker, the flagship coding contest of our annual Techno-management Fest, Aarohan '23.

The contest is based on ACM style and will consist of 5 problems.

Contest Link — https://codecracker.in/

Date — 11th March 2023, 10 PM IST

Duration — 2 hours

Prizes: Exciting cash prizes for top performers globally. You must register here to be eligible for prizes. The contest will be held on our very own online judge — CodeCracker, which is completely open-source.

The site is live, so you may check out the platform by participating in the test contest. If you detect any bug, have queries, or have any suggestions for our platform,please leave a comment below. See you on the leaderboard.

Happy Coding :)

The top 3 International Participants are:-

  1. merlin_
  2. Shikhar Mehrotra
  3. vrintle
  • Vote: I like it
  • -20
  • Vote: I do not like it

| Write comment?
»
3 years ago, hide # |
 
Vote: I like it +11 Vote: I do not like it

Send the prizes for the previous edition first.

»
3 years ago, hide # |
 
Vote: I like it +16 Vote: I do not like it

srijan_2002 Java code is giving MLE Please get it fixed and let me know here this is what I have submitted

import java.util.*; import java.lang.*; import java.io.*;

//Kindly do not change the class name, else it won't execute! class test { public static void main(String args[]) throws java.lang.Exception { System.out.println(2); } }

»
3 years ago, hide # |
Rev. 2  
Vote: I like it +20 Vote: I do not like it

bad gateway problem srijan_2002

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Questions not opening

»
3 years ago, hide # |
Rev. 3  
Vote: I like it +4 Vote: I do not like it

Nvm, round has been extended.

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it +8 Vote: I do not like it

    Oh, OK, then my code should have some flaw in it. Also, that makes contest unfair for participants who haven't seen this CF problem. Nasty move on problem setters side!

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    We will be posting the editorial soon. Hint: we tried to find out a solution using using hld

    • »
      »
      »
      3 years ago, hide # ^ |
       
      Vote: I like it 0 Vote: I do not like it

      Please post the editorials soon, for this problem specifically. Meanwhile, can you provide at least the official solution code.

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Anybody else got stuck with WA on tests 7 & 9 in problem Teleport?

  • »
    »
    3 years ago, hide # ^ |
    Rev. 2  
    Vote: I like it +3 Vote: I do not like it

    Yes. Note that, when doing dfs from the starting vertex as root, you can't visit nodes in the subtree of the ending vertex, because that means you've already crossed the ending vertex.