DR_Zain's blog

By DR_Zain, 18 months ago, In English

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?

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

| Write comment?
»
18 months ago, hide # |
Rev. 2  
Vote: I like it 0 Vote: I do not like it

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

»
18 months ago, hide # |
 
Vote: I like it +21 Vote: I do not like it

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...