gediiiiiii's blog

By gediiiiiii, 10 years ago, In English

We hope you participated and enjoyed the changes made to monthly Long Contests.

From now on, we will be having the problem statements available in Mandarin Chinese and Russian as well

As always, the long contests will start on first Friday of every month and last for 10 days. This ensures that two weekends are covered.

Continuing from there, we bring you the CodeChef June Challenge 2014 . The June 2014 Algorithm Challenge is taking place on http://www.codechef.com/JUNE14.

Here are the details:
Date: 6th June 2014 to 16th June 2014
Duration: 10 days
Problems: 9 binary problems of varying difficulty levels + 1 challenge problem.

Problem Setters:

Problem Testers:

Editorialist:

Mandarin Translator:

Russian Translator:

It promises to deliver on an interesting set of algorithmic problems with prizes up for grabs.

The contest is open for all and those, who are interested, are requested to register in order to participate.

Check out the local time in your City/Time Zone here. Do share your feedback on what you feel about the new long contest format at [email protected]

Good Luck! Hope to see you participating.

  • Vote: I like it
  • +1
  • Vote: I do not like it

| Write comment?
»
10 years ago, # |
  Vote: I like it +24 Vote: I do not like it

I reckon, that the statement of DARTS is awful. No examples on communication process, russian and english versions of the statement are different in some key points(For example, in the english one there's said, that we can choose N by ourselves, while the russian one claims that it's provided in the input and it's always equal to 100 000. Which of these two versions is correct? ). Also, the checker doesn't seem to be OK, cause I keep on getting WA verdicts with negative time of running. Seriously, the checker says that my solution runs in -1 seconds. Does anybody know what does it mean?

But the thing, that annoys me the most is that nobody of admins answers questions about the statement!

So, I ask admins to be more responsible and to start making something to resolve the problems I described above.

Thanks.

  • »
    »
    10 years ago, # ^ |
    Rev. 2   Vote: I like it 0 Vote: I do not like it

    Hi kostya_by,

    the correct is the english version, you can choose N for how many darts you throw in training mode, it is between 0 and 100000.

    Sry I didn't get your questions just now. I checked your solution, and run it with the offline tester, and it is write to me "your code still running", becuase you use too much dart. (I still don't know what is -1 on the server but maybe you write too the std output when the judge didn't expected,( the judge is finished example)..)

    The point is if you are at kind of stage where you cannot finished the 501 game with double your darts what is in your hand it would became "used". (you cannot finished if you overflow, or you don't finished with double the 501 or you have one score left because you cannot finished the game from here.)

    To better understaning try this:

    start to the offline tester:

    java -jar Darts.jar -deviation 0.0

    after that you just throw triple 13, after the 12 dart throw your score will be 468 and the used darts is 12. and next turn is start (three dart is in your hand again) if you throw triple 13 again your score is overflow you cannot finished the current stage the 501 game so this turn became invalid, and you lose the other two dart what is in your hand too.

    So your score would became 468 again and you used 15(!) darts.

    Regards,

    iscsi

    PS: Sorry my english.

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

    It seems you've get -1 time if you setup N less than 0 or more than 100000. Or throw a darts outside of the 1.2 circle. We will try to fix it soon, sorry.