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

Автор DR_Zain, 18 месяцев назад, По-английски

I was reviewing the first solvers of today contest and I saw this: 290888047 I don't think anyone can think, write, submit this code in 1:14 minutes

can you do it?

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

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

One thing I always do is to see the samples before reading the problem. Sometimes you understand the problem with samples!

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

It feels very inhumane to me to write a Position struct with fields int x and int y, instead of using array<int,2> or pair<int,int>, specially when solving the problem in 1min...