|
|
Note that there can be parallel edges, hence it is wrong to imply degree <= 100 i had wa 22 for many times , & i finally found my fault & then got AC . my fault is that i didn't find the exact edge (with the same ci & ti & hi) it used . remember there are many different edges between a (ui , vi) . I've encountered another problem on case 22: the maxtime parameter in that case is not <= 1000000 (as the task description says it should be); it seems that maxtime = 1087380 for this test case. The incorrect test #22 has been fixed. This test could help you. 5 8 1 5 2 200 1 2 1 100 99 2 3 0 0 0 3 2 0 0 0 2 4 0 0 0 4 2 0 0 0 3 4 0 0 0 4 3 0 0 0 4 5 1 100 99 You can draw this graph on paper, and the answer will be obvious. I have this output: 99 3 1 4 8 Good luck. I got RE9.I got WA10 after use your test.So interesting.QAQ Sorry my bad English. Edited by author 17.08.2021 06:35 In my case WA 10 was caused by one directional roads, not <->. "In a country, there is a number of cities connected by unidirectional roads" Can anybody help me to find out what does the fourth test case look like? Everything is ok with output format in my programm but I still get WA4. Any suggestions or test cases? Edited by author 12.03.2012 17:01 I had crash 5 for many times, and I finally found my fault and then I got AC. My fault is that I did not realize that MAXMONEY may be greater than n. So I used these to try to find an appropriate ending state: for i:=1 to maxmoney do if d[t*100+i] then ...... then I got Crash 5. Sorry for my poor English. :( Edited by author 20.05.2011 18:26 Edited by author 20.05.2011 18:26 really poor , monstrous jb Edited by author 21.05.2011 06:13 If you have troubles with test 4 than READ OUTPUT FORMAT CAREFULLY :) If you have WA on 10. than may be you forgot: "Note that the roads are unidirectional" i cant fix this problem :( i cant fix this problem :( please give any hint how to solve this problem. i now that we should use binary searching of height but how write dijkstra with 2 edge-parameters ? What can be tricky test? Note: edge unidirectional(not undirectional). Edited by author 31.08.2010 01:23 Mine is O( log(MaxH) * N^4 ) O(log(maxH)*M*N*log(N^2)) "the second line should contain the number of roads used to travel from s to t" is mean: how many roads from s to t ? and "the third line must be filled by the numbers of the roads you used in the order of usage" mean: which road is used from ith of m? right? Edited by author 12.12.2008 12:00 There is definitely bug in checker. My correct solution gets WA #12, some other solutions with loops get WA #12, and got AC after deleting it (but my solution guarantees there is no loops). I think, we should wait while somebody will deign to fix this bug in checker. But such problems arise only with test #12. If you have WA #10, may be there is problem with your code... From your words I can conclude what though your solution doesn't output any loops, It has some other bugs :) Leave you mail, may be I can help you. VedernikoffSM[at]mail[dot]ru I also have WA12, I have submitted code which should produce a runtime error if there is a loop and it just WAd. Could anybody give me any clue? Accepted. If anybody's interested, my mistake was stopping the Dijkstra when it came across an already found node. It could be that distance to T is even more but still acceptable. Edited by author 24.07.2008 16:29 How did you understand specifics of test 10? Help, please. I had problems with WA#9 and WA#10 due to bugs in my code, nothing conceptual. My solution considers loops, but the way it selects path for the answer, it will never attempt to backtrace a loopy one. Edited by author 13.07.2008 23:58 If you have WA 10: "roads are unidirectional" means that roads are one-way )) Create splices over the cost, make binary search on height by checking ability to meet the time requirement sum 1 help please!!!!!!!! any one knws anyting abt test case 9 and also.. wat if there are more than one possible outputs...?? What's Wrong?? the runid of my submission is 1789597. Oh, I got it... struct Edge{ int from,to,cost; }; a.push_back((Edge){i,j,c}); caused CE :( It is very strange!! Everyone who gets wrong is on test10or12, but I have been getting wrong on test 21 since the contest. I have rewritten my program, but it just didn't help. Can anyone help me!? http://acm.timus.ru/problem.aspx?space=1&num=1527 Edited by author 23.03.2007 10:39Ennn..... That's very strange! Maybe the administrator can help you. May be someone can help you Test 21 seems to be OK. Check carefully that your route has cost and time no more than MAX. I have written a program which can judge my route. My program will return TLE when my solution is wrong. But the result was--still wrong21. :< I have asked someone who got AC,and I am sure my method is right. Edited by author 27.03.2007 08:10 To the administrator: I suspect that the checker is not right while checking my solution. Can you check it for me? Or Can you just tell me what's wrong with my program? Thanks. Help me please, I have been waiting for a long time!! can you explain me your method? twoalias[(at]inbox.ru It is very strange: I've got AC on snarknews.info (Doreshivanie), but on Timus I got Crash or WA # 9 :( Timus Online Judge and Ejudge compile programs with different compilers with different command lines Oh, it is really super bug! This code: struct Pair { int vert; int cost; bool operator < (const Pair & other) const { return ((vert < other.vert) || ((vert == other.vert)&&(cost < other.cost))); } bool operator == (const Pair & other) const { return ((vert == other.vert) && (cost == other.cost)); } void set(int v, int c) { vert = v; cost = c; } }; got WA # 9. But this: struct Pair { int vert; int cost; bool operator < (const Pair & other) const { return ((vert < other.vert) || ((vert == other.vert)&&(cost < other.cost))); } bool operator == (const Pair & other) const { return ((vert == other.vert) && (cost == other.cost)); } void set(int v, int c) { vert = v; cost = c; } void operator = (const Pair & other) { vert = other.vert; cost = other.cost; } }; got Accepted! Intel C++ compiler really differs from the others :) Edited by author 19.02.2007 20:03 yes, you are right. look at my motto :) Edited by author 05.03.2007 22:40 I can't find in statements anything about it, so write without checking. Afrer deleting cycles y have AC. Why? Edited by author 06.03.2007 17:32 |
|
|