Блог пользователя anup.kalbalia

Автор anup.kalbalia, 14 лет назад, По-английски

CodeChef invites you to participate in the July 2012 CookOff at http://www.codechef.com/COOK24

Time: 2130 hrs 22nd July 2012 to 0000 hrs, 23rd July 2012 (Indian Standard Time — +5:30 GMT) — Check your timezone.
Details: http://www.codechef.com/COOK24/
Registration: Just need to have a CodeChef user id to participate. New users please register here
Problem Setter: Hiroto Sekido
Problem Tester: Maxim Kolosovskiy / Anton_Lunyov.
Problem Editorialist: Anton_Lunyov.

It promises to deliver on an interesting set of algorithmic problems with something for all.
The contest is open for all and those, who are interested, are requested to have a CodeChef userid, in order to participate.

Tags: algorithms codechef recent contest

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

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

Вопрос, я смогу сделать пару задач?Данным вопросом я прошу рассказать мне об уровне сложности задач!

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

Can i see the number of wrong test&

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

    If you mean whether you can see the test data or not, then the answer is no. We will make all solutions public at the end of the contest and also publish editorials. You can then ask your doubts from our problem setters on our editorial pages.

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

А правда, что порядок числа это просто количество не 3,5,8 в записи числа? Мое решение опиралось на этот факт и не прошло.

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

Very hard contest (2 last problems) ...

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

I got wrong answer in CEILTOMY.(number of shortest paths) ... I tried for over 1 hour but could not find the mistake in my code...Because of this my correct sub to CEILMAP was also delayed..Please somebody see my code and tell me where is it wrong...I am very anxious to know it..link

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

Well, that's unbalanced contest. 106 participants with three solved problems and only one with four. But I enjoyed the last two ones, thanks.

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

You can check the editorials here: http://discuss.codechef.com/tags/cook24/. Please feel free to ask your questions and discuss your doubts there.

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

Who have ideas to "Ciel Numbers III" ?

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

My approach for CIELMAP: "Find the convex hull of set of points and then iterate over every pair of point on the convex hull to find max length segment such that number of points on any one of the side of the segment is greater than 1"

O(nlogn) + O(n^2) : worst case

I got WA, why this approach is not correct ? Code