Show all threads Hide all threads Show all messages Hide all messages |
Overrated + Easy BFS | Keworker `~ | 1315. MDPAR and MIIAR | 7 Sep 2024 18:41 | 2 |
|
WA#23 please help! | Nodirbek Islomov | 1315. MDPAR and MIIAR | 25 Jun 2015 14:58 | 1 |
|
HINT: Instructions to the problem statement. | TestKiller | 1315. MDPAR and MIIAR | 12 Dec 2014 08:15 | 2 |
Finally I got AC. The English statement is so confused that I feel it necessary to make something clear here. 1 What does SURFACE mean? The surface means the uppermost row, in the other word, the row above the first input row. ONLY this row could be regarded as the surface. It means, the water could only pour in from these 'holes', and the man will rescue if he could reach the uppermost row. 2 What does the STARTING POINT mean? The starting point could be ANYWHERE in the cave, even could be a BLOCKED cube (the cube with '#')(Test #22). When we got the coordinate of the starting point, first notice that the Y-coordinate begins from the bottom. Then, you should do searching. Here: (1) DO NOT think a blocked starting point means "rescue operation required". Just regard it as a empty cell and continue. (2) When the man starts, he is at the starting point. Now he have just D-cube breaths, not D-1. That means the following testcase is correct: 3 3 2 1 3 #.# #.# #.# Can be rescued by himself. SO, IN ONE WORD, the starting point, although may be blocked or flooded with water, we can regard it as a place to breath as if it is empty without water. 3 How long could he stay in water? Through D cubes. If you look at the samples carefully, you will get the answer, without the mistake of D and D-1. 4 What does "Here only the paths having no downward segments are considered" in statement mean? It means the water could only flow lower and lower, not higher in any cases. So, in the sample data, the (5,3) cube will not be flooded with water and this cube can be used to breathe. 5 What does "It is known that a speleologist can reach the surface while cave is not filled with water." in statement mean? It means there exist a path from the starting point to the surface. If there is no water, or the man has infinite breathe, he could reach the surface. 6 What is the time complexity of the problem? O(W*H) could be achieved, though O(W*H*D) might have AC, too. Hope the instructions above could help someone in trouble. |
explain sample pls | Vit Demidenko | 1315. MDPAR and MIIAR | 7 Mar 2014 16:30 | 1 |
why for D==5 answer is "NO"? |
Test #3 Incorrect? | tm_tm_tm | 1315. MDPAR and MIIAR | 25 Jan 2013 16:19 | 4 |
I sended many times and I know test #3. <!-- begin test 3 --> 10 10 2 2 10 #........# #.....#### #...###.## #........# #....###.# #....#.#.# ###.#....# #.##.###.# #........# ########## <!--end test 3 --> The answer for this input is "Can be rescued by himself" But how it could be? The minimum length of the path is 20. Or speleologist can swim between two diagonal blocks? But how? the problem description isn't clear about it. Somebody who has got AC, please, clarify... 0 1 2 3 2 1 0 0 0 0 0 2 3 4 3 2 0 0 0 0 0 3 4 5 0 0 0 11 0 0 0 4 5 6 7 8 9 10 9 0 0 3 4 5 6 0 0 0 8 0 0 2 3 4 5 0 11 0 7 0 0 0 0 3 0 9 10 9 8 0 0 11 0 0 11 0 0 0 7 0 0 11 10 9 10 9 8 7 6 0 0 0 0 0 0 0 0 0 0 0 This is matrix, that represent maximal possible count of air, in this test. Watch, you can go to (3, 5) and we can receive air, and go to the next. Than we can reach (5, 7) and receive air again. Than go to the (8, 8), and receive air here :) And than we go to the top, and *YAHOO* Thank you for test3! I got AC... I just increase D at start, and "rescued by himself" if there remain 2 breaths (not 1) at topmost row. But is so strange... Thanks, its such a nice problem but messed up with extremely confusing statement. |
How to do it faster? | AterLux | 1315. MDPAR and MIIAR | 6 Jun 2011 21:10 | 1 |
How to solve this (1315) faster than 0.1 sec? Which algo for this? My algo like this: For each cell i store: type (air, water or rock) and swim-air-capacity (number of cells can swim from this point) After load I have map with air and rocks First I filling topmost air-spaces with water and continue graph-fill to left to right and downwards, to determine which air-cells filled with water Second, I make air-capacity for start-cell is D+1, and thent I start BFS-fill of map like this: while cell-air-capacity is more than 0, i fill neighbour-cells: if neighbour-cell is air, set air-capacity to (D + 1), if water, and that air-capacity less than in this cell - then set air-capacity to value of this cell, decreased by 1. If one of cells in topmost row filled with Air-capacity 2 or more, then result "Can be rescued by himself" This algo takes 0,328 sec. But I can see in statistic there 0,031 and 0,045 sec results. Which algo can do it faster? Excuse my English ) Edited by author 06.06.2011 21:22 |
Changes in problem 1315 "MDPAR and MIIAR" (+) | Sandro (USU) | 1315. MDPAR and MIIAR | 25 Jan 2011 03:16 | 1 |
The limitations in the problem statement were decreased. New limitations are W, H ≤ 500; D ≤ 1000. Tests were fixed according to these limitations. New tests were added. All submits were rejudged. 5 submits got AC verdict, 41 submit lost AC verdict. Thanks to Sergey Vedernikov and Roman Rizvanov for new tests |
What does SURFACE mean? | TestKiller | 1315. MDPAR and MIIAR | 3 Sep 2010 21:02 | 1 |
In the text, what does the word SURFACE mean? Consider the following case: 3 6 2 2 3 #.# #.# #.# #.# ... ### Can he rescued by himself?????? |
About Test #11 | PPLoveTT | 1315. MDPAR and MIIAR | 9 Nov 2009 21:36 | 3 |
What's the trick on Test #11?.. Help me ... I also need some help... It seems to me, that my program is correct. Got AC finally. In 11 test N=1000; M=1000; D=1998; X=1000; Y=1; Rescue operation required; start position in water. My mistake was, that I didn't fill with water start position of bfs. |
some misundersandings | Dmitry "Logam" Kobelev [TSOGU] | 1315. MDPAR and MIIAR | 23 Aug 2009 11:46 | 2 |
1)What is considered to be surface? the row with y == h + 1 or any cell out of cave? What that? 1 2 1 1 1 . . 2)May water flows not only from the higher row? 3 3 2 2 1 ### ... ... ? I dont know what leads to my wa11 ( any hints? In my ACed solution: 1. Only row with y = h + 1. 2. No. |
Help me! I have got WA#3 | Dembel {AESC USU} | 1315. MDPAR and MIIAR | 29 Jan 2008 21:26 | 3 |
please give me some tests! I've got WA on #3, too. But, why? Now I have AC. But I don't remember my bugs. |
Mini-rejudge (+) | Sandro (USU) | 1315. MDPAR and MIIAR | 26 Jul 2007 21:35 | 1 |
Some new tests were added. About 40 submits lost AC verdict. Maybe I will add more tests soon. If your AC solution works slow on some test you may post a structure of tricky test in this topic, and I will add it. |
My O(W*H) solution works too slow :( [-] | Chmel_Tolstiy | 1315. MDPAR and MIIAR | 22 Jun 2007 15:49 | 1 |
|
WA#16 | AlexF [USTU] | 1315. MDPAR and MIIAR | 13 Jan 2007 10:52 | 5 |
WA#16 AlexF [USTU] 6 Jan 2007 14:32 Help me, please with this test. Help me, please, anybody... I've done it at last. Problem statement is unclear, so I had many troubles Post your e-mail or reply on my and I will help you Thank you!)) AC at last!))) |
Test #11 | [SPbSU ITMO] WiNGeR | 1315. MDPAR and MIIAR | 10 Dec 2006 01:40 | 3 |
Test #11 [SPbSU ITMO] WiNGeR 23 Nov 2006 16:23 Test #14 [SPbSU ITMO] WiNGeR 23 Nov 2006 16:27 In test 14 cell (x, y) is not empty! |
Help me with coordinates please | Vova | 1315. MDPAR and MIIAR | 4 Nov 2006 19:29 | 2 |
What is the system of coordinates in this task ? Write me as example: 1 2 3 4 ... w 2 . . h and where is the (8,2)in this table: ##..##..# ##.#.#### ##......# ######### ? |
There is a bug in English description | Dryad | 1315. MDPAR and MIIAR | 11 Mar 2006 16:25 | 1 |
and a space " " denotes air in Russian description, there is a "." and in sample input there are "." So what is " ", "." and the atom denotes air finally? I'm so confused. |
Anybody plz explain the samples? | Maigo Akisame (maigoakisame@yahoo.com.cn) | 1315. MDPAR and MIIAR | 26 Sep 2005 18:38 | 2 |
The speleologist may "have a rest" during the self-rescue and the water never flows up. :) |
If your get wa on test #14 try it | Aleksey (BMSTU IU7) | 1315. MDPAR and MIIAR | 28 Sep 2004 03:13 | 1 |
if human started in filled '#' position, do not write instantly 'Rescue operation required'... run search process in any case. ...the magic "i:=i div(i-i)" helped us. |
I wonder how, I wonder why :) (+) | Dmitry 'Diman_YES' Kovalioff | 1315. MDPAR and MIIAR | 6 Sep 2004 11:54 | 1 |
The test data seems to be weak. My O(N*M*D) solution without any optimizations gets AC within 0.56 sec! Just faint... |