675. Cut Off Trees for Golf Event

You are asked to cut off trees in a forest for a golf event. The forest is represented as a non-negative 2D map, in this map:

  1. 0 represents the obstacle can't be reached.
  2. 1 represents the ground can be walked through.
  3. The place with number bigger than 1 represents a tree can be walked through, and this positive number represents the tree's height.

You are asked to cut off all the trees in this forest in the order of tree's height - always cut off the tree with lowest height first. And after cutting, the original place has the tree will become a grass (value 1).

You will start from the point (0, 0) and you should output the minimum steps you need to walk to cut off all the trees. If you can't cut off all the trees, output -1 in that situation.

You are guaranteed that no two trees have the same height and there is at least one tree needs to be cut off.

Example 1:

Input: 
[
 [1,2,3],
 [0,0,4],
 [7,6,5]
]
Output: 6

Example 2:

Input: 
[
 [1,2,3],
 [0,0,0],
 [7,6,5]
]
Output: -1

Example 3:

Input: 
[
 [2,3,4],
 [0,0,5],
 [8,7,6]
]
Output: 6
Explanation: You started from the point (0,0) and you can cut off the tree in (0,0) directly without walking.

Hint: size of the given matrix will not exceed 50x50.


思路:BFS,外面套层循环

package l675;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Queue;

/*
 * 每次BFS找一个路径
 */
class Solution {
    public int cutOffTree(List<List<Integer>> forest) {
    	int[][] a = new int[forest.size()][forest.get(0).size()];
    	for(int i=0; i<forest.size(); i++)
    		for(int j=0; j<forest.get(0).size(); j++)
    			a[i][j] = forest.get(i).get(j);
    	
        List<Integer> l = new ArrayList<Integer>();
        Map<Integer, int[]> map = new HashMap<Integer, int[]>();
        for(int i=0; i<a.length; i++)
        	for(int j=0; j<a[0].length; j++) {
        		if(a[i][j] != 0)	l.add(a[i][j]);
        		map.put(a[i][j], new int[]{i, j});
        	}
        Collections.sort(l);
        
        int ret = 0;
        int[] cur = new int[]{0, 0};
        for(int i : l) {
        	int tmp = getStep(a, cur, map.get(i));
        	if(tmp == -1)	return -1;
        	ret += tmp;
        	cur = map.get(i);
        }
        return ret;
    }

	private int getStep(int[][] a, int[] cur, int[] end) {
		boolean[][] m = new boolean[a.length][a[0].length];
		int[][] d = new int[][]{{0,1},{0,-1},{1,0},{-1,0}};
		int step = 0;
		boolean f = false;
		Queue<int[]> q = new LinkedList<int[]>();
		Queue<int[]> qq = new LinkedList<int[]>();
		q.add(cur);
		while(!q.isEmpty()) {
			int[] t = q.remove();
			if(t[0]==end[0] && t[1]==end[1]) {
				f = true;
				break;
			}
			
			for(int i=0; i<4; i++) {
				int x = t[0] + d[i][0], y = t[1] + d[i][1];
				if(x<0||y<0||x>=a.length||y>=a[0].length||a[x][y]==0||m[x][y])	continue;
				qq.add(new int[]{x,y});
				m[x][y]  = true;
			}
			
			if(q.isEmpty()) {
				q = qq;
				qq = new LinkedList<int[]>();
				step ++;
			}
		}
		
		return f ? step : -1;
	}
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值