You can ask any questions about the contest here.
created
last reply
- 13
replies
- 1.5k
views
- 9
users
- 1
link
You can ask any questions about the contest here.
I wonder if the sample output for problem "Rectangles in a Square" is correct?
As I understand it, the rectangles are put in a grid and corners are at integer coordinates in the grid. Therefore, a rectangle with opposite endpoints (3 8) (10 10) has width 7 and height 2. But there is no such rectangle given in the input, also no rectangle with width 2 height 7.
The sample output looks as if 1 was added to the true coordinates of (x1,y1).
The scoring system seems a bit flawed. Say I code a solution in C and then submit it in C and C++. This won't improve my standing at all, but it will worsen the standing of everyone who has a lower score than I. To see what I mean, check out what Long has done in MSWP.
Could you limit scoring to one correct solution per person, not one correct solution per person per language?
Thanks.
Edit: Hmm, this may be a nonissue if score is based on your score versus the top score (and I think it is).. heh.
Update: ignore the below, I've just looked again and the scoring is correct. Not sure if I mis-looked before or whether something was fixed.
Problem #761 MSWP seems to be a "challenge" style problem according to the definition in the rules, but the scoring appears to be following the rules for "classical" problems: top scorers all have equal "your_score" for the problem, but the ranking table shows them getting different "table_score", in order of submission time.
Hugo
Problem "LIB" is poorly defined:
Does it really make that much difference?
- should I output the trailing "\n" ? (bf2c does that itself)
You shouldn't need to do that. For just about every problem (sans those with strict output requirements), whitespace is mostly irrelevant -- it's either absent or present. Your solution would be judged correct if it includes one or nine trailing "\n"s.
- does the program have to terminate after it writes the output?
Yes, or it will exceed the time limit (the judge software doesn't know you're actually done).