You are given a 2D grid represented as an N x M matrix. Each cell in the grid has one of the following values:
The journey starts at the top-left cell (0, 0) and must end at the bottom-right cell (N-1, M-1). Movement is allowed in four directions: up, down, left, or right (no diagonal moves). You cannot enter a cell that contains an obstacle (-1).
Your task is to write a function that determines whether there exists a path from the starting cell to the destination such that the total sum of reward points collected along the path is at least a given target value K. If such a path exists, your function should also return the length of the shortest path (measured in the number of moves) that meets or exceeds the reward threshold K. If no valid path exists, return an appropriate indication (for example, -1).
Consider the following grid and reward threshold:
grid = [
[1, 2, -1, 4],
[2, 3, 2, 1],
[0, -1, 0, 3],
[4, 1, 2, 0]
]
K = 10
A valid solution is to find the shortest path from the top-left to the bottom-right cell that collects at least 10 rewards in total along the way.
Design and implement your solution for this problem. Make sure your code is efficient and well-structured, as it may need to handle large grids. Your implementation should be self-contained and should not rely on any external hints or guides.