[gcj] Re: T-shirt has already sent?

2012-12-22 Thread Oleksandr Sochka
Maybe I'm the only one left here, who haven't received it yet) On Monday, July 30, 2012 5:36:02 AM UTC+3, GaoYusong wrote: > > T-shirt has already sent? > > -- You received this message because you are subscribed to the Google Groups "Google Code Jam" group. To post to this group, send email to

[gcj] 15 - Shortest Path, 440 - Tortoise's Shortest Path

2012-12-22 Thread thefourtheye dIVi
Hi, I think this is one of the simple problems which would have got a lot TLEs. This is what I do, http://ideone.com/7XE0UU My actual starts at Line 228. It TLE's in https://www.spoj.com/problems/SHPATH/ whereas it WA's in http://www.spoj.com/problems/TSHPATH/ (which is same as the SHPATH proble

[gcj] SPOJ - POUR1

2012-12-22 Thread thefourtheye dIVi
This is again a simple problem which I am not able to solve.. :( http://www.spoj.com/problems/POUR1/ My solution here http://apps.topcoder.com/forums/?module=Thread&threadID=773929&start=0&mc=1#1658272 Any ideas? -- You received this message because you are subscribed to the Google Groups "G

Re: [gcj] 15 - Shortest Path, 440 - Tortoise's Shortest Path

2012-12-22 Thread ZHANG Xiongqi, Parker
Hey, you forgot to clear Weight[i] for different test case before pushing new edges for new cities ! ! :) and FastIO is not needed. Parker On 2012/12/23 11:25, thefourtheye dIVi wrote: Hi, I think this is one of the simple problems which would have got a lot TLEs. This is what I do, http

Re: [gcj] 15 - Shortest Path, 440 - Tortoise's Shortest Path

2012-12-22 Thread thefourtheye dIVi
Ya Parker... Thanks a lot... I just got AC in both of them... But trying to improve performance... I ll try without FastIO... Spent two days writing and debugging the FastIO class... :( On Sun, Dec 23, 2012 at 11:36 AM, ZHANG Xiongqi, Parker < zhangxion...@gmail.com> wrote: > Hey, you forgot to