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

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

hello guys

I was trying to solve problem EAGLE1 in spoj OJ

the problem gives you a weighted tree and ask you for each node , find farthest node from it

this is very standard dp problem but my code strangely always take runtime error , although I tried different coding styles.

I thought maybe there's something wrong with test cases but I tried to write code that check the validity of test case before processing it but it showed that nothing wrong with the test cases

I'm seeking for help to explain what's happening , here's my code

thank you in advance

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

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

looks like a stack overflow

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

Adding #pragma comment(linker, '/STACK:200000') to the top of your code gets it accepted :P

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

Can someone please help me find out where I am wrong code . Thanks in advance