Block DropProblem code: BLOCKDRO |
All submissions for this problem are available.
There is a square pool divided into NxM cells. In some cells of the pool there stone islands. Each island consists of some number of stones. Let's call this number the height of the island. You can jump from the island with coordinated (x,y) to any island with coordinates (x+1,y), (x+2,y), (x-1,y), (x-2,y), (x,y+1), (x,y+2), (x,y-1), (x,y-2). When you jump off the island its height goes down by one. If the height of any island becomes 0 it goes under water and you can't jump on it any more. You start on island with coordinates (sx, sy). The goal is to make all the islands (except the final one) go under water and finish on the island with coordinates (fx, fy) which should have height equal to 1 when you finish on it. You task is to count the number of different ways to achieve the goal.
Input
The first line of input file contains number t - the number of test cases (no more than 5 for each file). Then the description of each test case follows. The first line of each test case contains numbers N and M. The next line contains two coordinates sx and sy of the start cell. After that there are two coordinates fx and fy of the finishing cell. Then N lines follow each consisting of M integers denoting the heights of the islands in each cell of the pool. The height 0 means that there is no island in the cell. Note also that each test case in the official tests will be generated by the following procedure. The dimensions of the pool will be chosen randomly and uniformly: N and M will be from 3 to 8 inclusive. Then the final cell will be chosen randomly: fx will be from 1 to N and fy will be from 1 to M. The height of island in the cell (fx, fy) will be set to 1. Then the number of jumps will chosen randomly from 15 to 25. Then this many random valid jumps will be performed adding one stone to the cell the jumps lands on. The cell on which we land after performing all the jumps will be proclaimed as the initial cell: (sx, sy).
Output
For each test case print the total number of different ways to solve the task.
Example
Input: 1 3 3 3 1 3 1 1 0 0 3 1 1 3 1 1 Output: 152
| Author: | spooky |
| Tester: | gamabunta |
| Editorial | http://discuss.codechef.com/problems/BLOCKDRO |
| Date Added: | 9-07-2011 |
| Time Limit: | 5 sec |
| Source Limit: | 50000 Bytes |
| Languages: | ADA, ASM, BASH, BF, C, C99 strict, CAML, CLOJ, CLPS, CPP 4.0.0-8, CPP 4.3.2, CS2, D, ERL, FORT, FS, GO, HASK, ICK, ICON, JAR, JAVA, JS, LISP clisp, LISP sbcl, LUA, NEM, NICE, NODEJS, PAS fpc, PAS gpc, PERL, PERL6, PHP, PIKE, PRLG, PYTH, PYTH 3.1.2, RUBY, SCALA, SCM guile, SCM qobi, ST, TCL, TEXT, WSPC |
Comments
SUCCESSFUL SUBMISSIONS
Fetching successful submissions


What is happening with the
There is an error in the
Wrong again? May be like this
No allowed programming
Sorry for the inconvenience!
This is fixed. Sorry for the
"Then the number of jumps
It describes how the input is
is the initial cell to be
@feluda if you mean whether
Please clarify .. 1 3 3 3 1 3
or to be more simple what is
@maverick_dp I believe you
taking bottom-left corner to
@abhishek308 origin is at
This has to be the worst
It is said "Then the number
@pr0ton probably your
@Proton , many a times ,
@admin Whtz the time limit of
@linkin Please read the FAQ
Just wondering, is there any
There is an accepted solution
hey admin, Im getting a
n by the way.. I think the
My code gives me 152 so +1
@Shilp i m getting answers
@proton any help on above