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

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

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
  • Проголосовать: не нравится

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

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

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

Can i see the number of wrong test&

  • »
    »
    12 лет назад, # ^ |
      Проголосовать: нравится +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.

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

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

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

    нет, например 333333

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

      Блин точно. Тогда ваще не понятно как ее решать. Разве что есть другой такой простой способ определить порядок

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

    Нет. Если много 5 и мало 8, то это тоже влияет на порядок.

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

    Это супер жесткая не правда, посмотри определение в условии и примеры. Там есть контрпример к твоему пониманию.

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

Very hard contest (2 last problems) ...

»
12 лет назад, # |
  Проголосовать: нравится 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

»
12 лет назад, # |
  Проголосовать: нравится +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.

»
12 лет назад, # |
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.

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

Who have ideas to "Ciel Numbers III" ?

»
12 лет назад, # |
  Проголосовать: нравится +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

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

    Your approach is wrong for the case N=4. Try test 0 0 2 0 1 2 1 1 With your approach you did not find the answer at all. But the correct answer is sqrt(5) since (0,0), (2,0), (1,1), (1,2) is a simple tetragon having side (1,2)-(0,0) of length sqrt(5).

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

    There are exist testcases that two farthest points doesn't lie in convex hull, but if n>=5 the answer is maximum distance.

  • »
    »
    12 лет назад, # ^ |
    Rev. 3   Проголосовать: нравится +5 Проголосовать: не нравится

    Described approach (I didn't read the code) should fail on this test (even if you count non-hull points as well):

    4

    0 0

    0 4

    1 4

    2 5

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

    Perhaps it would work if, when calculating npa and npb, you counted all points, not just points on the convex hull.