Overloaded judge during contests
Moderator: Board moderators
-
- New poster
- Posts: 28
- Joined: Wed Jul 31, 2002 10:33 am
- Location: Ukraine
- Contact:
Overloaded judge during contests
Could something be done with the system so that it would process submissions faster? It is very annoying. The overloaded system destroys the pleasure from very good problem sets. For example, during the last contest I submitted the problem A in hour before the end, and received the answer "Memory Limit Exceeded" only after the end of the contest. Of course, if'd received this answer during the contest, I would immediately have changed the solution. Actually, all that I had to do, to change int to short in one place to get AC. In the previous contests I received "Presentation Error". These mistakes are specially annoying, as they would easily corrected in the normal conditions. Of course, everyone is in the same condtions, but these conditions are bad now.
In any case, thanks again for all your efforts and for very interesting problems.
In any case, thanks again for all your efforts and for very interesting problems.
-
- Experienced poster
- Posts: 128
- Joined: Fri Nov 15, 2002 7:45 am
- Location: Kyrgyzstan
Hello, Alexander!
I fully agree with you on the situation on this server. Actually the reply times are so long that I almost decided to search for another contest sites, and there seems to be a lot of them. Although the problems are not so good as here and the participants are less famous, the system works quite fast and it provides the feel of real contest.
I don't think this is a problem with system performance - it's rather some limitation on CPU load (it's idle time according to online server status seems to never reach low values, while it should).
Anyway don't think of me as of traitor.
I really wish this online judge would be the best. And I think it is indeed the best now - just some temporal inconveniences, I hope.
Best regards,
Andrey Mokhov.
I fully agree with you on the situation on this server. Actually the reply times are so long that I almost decided to search for another contest sites, and there seems to be a lot of them. Although the problems are not so good as here and the participants are less famous, the system works quite fast and it provides the feel of real contest.
I don't think this is a problem with system performance - it's rather some limitation on CPU load (it's idle time according to online server status seems to never reach low values, while it should).
Anyway don't think of me as of traitor.
I really wish this online judge would be the best. And I think it is indeed the best now - just some temporal inconveniences, I hope.
Best regards,
Andrey Mokhov.
-
- Experienced poster
- Posts: 202
- Joined: Fri Mar 22, 2002 2:00 am
- Location: Chittagong. CSE - CUET
- Contact:
Hmm... Alexander, your words are very much true! It happens during the last periods of the contests! Besides while there arise a long queue and the judge working on it... then any submisson and it's reply sometimes not found! Sometimes it also not inserted into the queue
How this can be solved I am not sure! As the judge is upgraded now... there hardware is also upgraded, Now I think the socket server or the submit-0-matic needs to be upgraded... fpnc can tell better
And Andrey, congrates for your team in acm.zju.edu.cn.
Hmm... you are finding another contest site...
But with you I also believe this is yet the best! though it needs improvement but as fpnc suggested about our OJ... I know he can do better than that! Looking for his reply
How this can be solved I am not sure! As the judge is upgraded now... there hardware is also upgraded, Now I think the socket server or the submit-0-matic needs to be upgraded... fpnc can tell better
And Andrey, congrates for your team in acm.zju.edu.cn.
Hmm... you are finding another contest site...
But with you I also believe this is yet the best! though it needs improvement but as fpnc suggested about our OJ... I know he can do better than that! Looking for his reply
We are all in a circular way, no advances, only moving and moving!
-
- New poster
- Posts: 28
- Joined: Wed Jul 31, 2002 10:33 am
- Location: Ukraine
- Contact:
2hewei
Actually, I used dynamic programming. The running time is O(N^4) (however the inner loop contains a few operations, so the constant is small and there is no TL), and the used memory is O(N^3) (at first I had array int [210][210][210] and that caused ML - it was quite annoying). If you want more advices, mail me.
Actually, I used dynamic programming. The running time is O(N^4) (however the inner loop contains a few operations, so the constant is small and there is no TL), and the used memory is O(N^3) (at first I had array int [210][210][210] and that caused ML - it was quite annoying). If you want more advices, mail me.
-
- System administrator & Problemsetter
- Posts: 399
- Joined: Sat Jan 12, 2002 2:00 am
Come on guys
Well this is not a regular problem. The waterloo contests and the contest before was quite OK. We will try our best but please visit the link below to know what your duty is as a contestant.
http://online-judge.uva.es/board/viewto ... highlight=
[/url]
http://online-judge.uva.es/board/viewto ... highlight=
[/url]
Thanks a lot, Alexander!Alexander Grushetsky wrote:2hewei
Actually, I used dynamic programming. The running time is O(N^4) (however the inner loop contains a few operations, so the constant is small and there is no TL), and the used memory is O(N^3) (at first I had array int [210][210][210] and that caused ML - it was quite annoying). If you want more advices, mail me.
Well, at my first sight of the problem during the contest, I thought it needed DP. But I had given it up after a few tries because I had proven the two DP methods I came up with to be both incorrect. Yes, I should have known it was DP from the memory usage of the program of yours and those who got AC (All of them was about 8M, 16M or 32M. Maybe it was the result of char, short or int). And surely, I will mail you if I have further doubts.
-
- New poster
- Posts: 8
- Joined: Sat Jul 06, 2002 3:46 pm
- Location: CSE, SUST, Bangladesh
- Contact:
it is possible to use judge helper machine
using some volunteer Judge on other sites where there will be some critical inputs (less than final) and sending there people get idea if their solution will not be accepted or has chance to be accepted.... and then submit to the uva judge - i think can decrease some pressure
-
- New poster
- Posts: 11
- Joined: Sun Oct 05, 2003 11:36 am
- Location: http://acm.zju.edu.cn Hangzhou, China
-
- Experienced poster
- Posts: 146
- Joined: Sat Apr 26, 2003 2:51 am
-
- New poster
- Posts: 20
- Joined: Thu Apr 10, 2003 10:53 pm
-
- Experienced poster
- Posts: 146
- Joined: Sat Apr 26, 2003 2:51 am
-
- New poster
- Posts: 28
- Joined: Wed Jul 31, 2002 10:33 am
- Location: Ukraine
- Contact:
The summary:
C: It seems it has incorrect constraints. I checked (but too late) n, at it is not in [2,100].
D: A mistake in the problem statement. But there was a clarification
E: An incorrect output checker. Accepts any output.
G: There should be not such problems, while the judge is very slow.
And the judge... I have no good words. I even thought it was dead and did other things.
Once again, very interesting problems and not good feelings about the contest.
C: It seems it has incorrect constraints. I checked (but too late) n, at it is not in [2,100].
D: A mistake in the problem statement. But there was a clarification
E: An incorrect output checker. Accepts any output.
G: There should be not such problems, while the judge is very slow.
And the judge... I have no good words. I even thought it was dead and did other things.
Once again, very interesting problems and not good feelings about the contest.