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

Автор divyam, история, 9 лет назад, По-английски

Hi, Codeforces Community!

Codefest'17 — a diverse roster of high-quality programming competitions by Department of Computer Science and Engineering, IIT Varanasi is excited to present Perplexed — the constrained programming event.

The contest will take place at HackerRank (https://www.hackerrank.com/perplexed-codefest17 ). This contest will be an individual event with a duration of 5 hours, from Sep/22/2017 15:30 UTC. With the creativity that the problems will naturally encourage and INR 50,000 at stake, there is absolutely no reason for a programmer to not give this one a shot!


The questions here will bend your mind in different ways — this is not your normal coding contest! After all, tackling various kinds of situations and challenging constraints is what makes programming an art :)

Prizes -

1st (Overall) — INR 20,000
2nd (Overall) — INR 12,000
3rd (Overall) — INR 8,000
1st (India) — INR 7,000
1st (IIT Varanasi) — INR 3,000

To be eligible for the prizes you must be registered for the Perplexed event on http://codefest.tech/dashboard/events/. Innovate or stay perplexed!

UPD1 — Contest will start in 2 hours. It will have 12 problems to be solved in 5 hours.
UPD2 — Contest has started.
UPD3 — Contest has ended.

Overall Winners —

  1. tourist
  2. uwi
  3. Deemo

Indian Winner — sp_502
IIT(Varanasi) Winner — ab13123002

Thank you for participation and hope to see you in other Codefest'17 events.

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

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

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

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

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

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

How many tasks?

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

Why doesn't it appear on the contests page on HR?

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

You can have a look at last year's contest to know more about the type of problems.

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

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

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

What do you mean by constrained programming?

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

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

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

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

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

how to run the executables in linux?

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

Any idea why this TLEs?

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

In lying detective problem, for this test case,
4
a b c
aacb
The answer I am getting is 3(aacb(0, 2, 3), acb(0, 2, 3), acb(1, 2, 3)). But the actual answer is 4. Can any one tell me the other subsequence?

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

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

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

How do you solve The Six Thatchers?

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

    Requires an approximate algorithm.
    Choose any two indices randomly and select all numbers from 1 to 10^5 which give the same remainder for these indices. Check whether any of these (p,m) pair form the answer. If you iterate the above process 10 times, the probability of not getting the correct answer is about 10^(-30).
    Thus, the solution works because k/n is less than equal to 0.02.

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

This code shows correct answer on local machine and doesn't look like having any undefined behavior. Can anyone check?