|
|
Edited by author 18.08.2024 01:04 Two segments of rivers (a, b) and (c, d) intersects iff a == c or a == d or b == c or b == d is the first sample correct? isn't a test from picture? and then there is not river basin with area 16 in the table. it is correct. Edited by author 30.03.2011 00:29 AC using convex polygon algo from e-maxx.ru. I don't know where i was wrong... Edited by author 15.05.2012 22:52 This is the first test where the convex_hull fails if it uses integer as a result of vector product. two rivers are considered to be connected iff they share at least one vertex (no matter inner vertex or end vertex) example 1: 2 2 -1 0 1 0 2 0 1 0 -1 not connected, because their intersection (0, 0) is not a vertex of river 1 or river 2 example 2: 2 2 -1 0 1 0 3 0 1 0 0 0 -1 not connected, because (0, 0) is not a vertex of River 1 example 3: 2 3 0 1 0 0 0 -1 3 -1 0 0 0 1 0 connected, because (0, 0) appears on both rivers Can somebody help me with this test? I think there is some small bug in my program or in the statement understanding, but I can't find it... An appropriate test would help me a lot. It is uncomplete problem's description. Rivers are considered to be connected ONLY if they have the same point. Sample of the different rivers below 2 2 0 1 0 0 2 -1 0 1 0 The answer is 0. Thanks for the author :((( Edited by author 16.08.2005 18:22 "The vertexes of the broken line are the turning points of the river-bed, or the points of tributary flow." It looks like the last part is about that... But I didn't get it as absolutely necessary condition. Edited by author 12.08.2008 07:43 // below, when speaking about broken lines, for any line I divide it's points into endpoints (first and last) and inner points (the rest) // I had the following 4 questions when solving this problem: 1. Is "tributarity" transitive? I.e. when calculating basin area, do we only consider the river and it's tributaries, or do we also look at tributaries' tributaries, and tributaries of those tributaries etc? 2. Is it assumed that points in the river are ordered from head to mouth (or from head to entry-to-parent-river)? 3. Is it true that a river A is a tributary of river B if and only if one of endpoints of A is an inner point (not endpoint!) of B? 4. Can an inner vertex be a turning point and an entry point of a tributary flow at the same time (or tributaries only enter in points which lie on some straight part of the broken line - like in problem samples)? I did the following assumptions and got AC, so either they are right or there's no testdata to distinguish: 1. Yes, we include all the hierarchy 2. No, any endpoint may be an entry to a "parent" river. But not both - one of 2 endpoints is always head (as problem statement says) NOTE: this is only my (maybe false) assumption that complicates things just a bit, and doesn't contradict the opposite assumption, but covers it instead. 3. Yes. 4. Yes. All inner points can be subflows' entry points. P.S. In fact, question 2 is almost unnecesary because problem statement says: "Every river is shown as a broken line, which begins with a river head and ends either at the point where the river flows into another one, or on the river mouth". The problematic word here is "shown". Is it equal to "given in input file?", i.e. does this order correspond to input data? Edited by author 06.02.2006 02:44 Edited by author 06.02.2006 02:46 What is numbeblem or this problem? |
|
|