K-Special Cells
Practice
2.9 (8 votes)
Combinatorics
Easy
Math
Problem
84% Success 5838 Attempts 20 Points 1s Time Limit 256MB Memory 1024 KB Max Code
- You are given a \(N \times M\) matrix which has K special cells in it. You have to reach \((N, M)\) from \((1, 1)\). From any cell, you can only move rightwards or downwards.
- The \(K-special\) cells are those cells in this grid which have special strength at them. \(i^{th}\) special cell has \(P[i]\) units of strength and if you travel through this cell, you store the strength.
- Find the total strength you can store after travelling through all the possible paths in the grid to reach cell \((N,M)\).
- Note:
- The strength of a path is the sum of strength \(P[i]\) of all the special cells that are visited in this path.
- The cells that are not special have power quotient equals to zero.
Input format
- The first line contains the total number of test cases denoted by T.
- The first line of each test case contains three space separated integers N, M and K where N x M is the size of grid and K is the total number of special cells in the grid.
- Each of next K lines contains X[i], Y[i], and P[i] where (X[i],Y[i]) is the location of special cell and P[i] is the cell strength.
Output format
- For each test case, print in a new line a single integer representing the total strength that you can store, as the total strength can be too large, print it modulo \(10^9+7\).
Constraints
- \(1 \le T \le 3\)
- \(1 \le N, M, P[i] \le 10^5\)
- \(1 \le X[i] \le N\)
- \(1 \le Y[i] \le M\)
- \(1 \le K \le 10^6\)
Explanation
Total Power that can be collected is 11, as there are only two possible paths in grid of size 2x2 and total power we can collect by traveling through both of these paths is 11.
Code Editor
Please login to use the editor
You need to be logged in to access the code editor
Loading...
Please wait while we load the editor
Results
Custom Input
Run your code to see the output
Submissions
Please login to view your submissions
Similar Problems
Points:20
29 votes
Tags:
ApprovedCombinatoricsEasyMath
Points:20
23 votes
Tags:
Ad-HocCombinatoricsEasyImplementationMath
Points:20
6 votes
Tags:
CombinatoricsEasyMath
Editorial
Login to unlock the editorial
Please login to use the editor
You need to be logged in to access the code editor
Loading...
Please wait while we load the editor
Results
Custom Input
Run your code to see the output