jakeob's blog

By jakeob, history, 30 hours ago, In English

The below code is the solution to some USACO problem and I when submitting I noticed that my submission did not get the full credit so I spend some time looking around my code and found out that there is somehow a problem with the initialization of the map when I initialize map m like this the:

My Code

the code doesn't pass all test cases. But when I did it manually like in the example below it works perfectly. So I would like to ask you why that is?

My Code
  • Vote: I like it
  • +1
  • Vote: I do not like it

»
29 hours ago, # |
  Vote: I like it +12 Vote: I do not like it

In your initial program, you have " Pig" instead of "Pig".

  • »
    »
    22 hours ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Ooh, thank you so much, I really did not notice that. Ok so that means both ways of initializing maps are valid. Thanks