ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

[LeetCode] 1706. Where Will the Ball Fall

2022-03-01 11:31:06  阅读:213  来源: 互联网

标签:box Ball 1706 stuck column Will int ball grid


You have a 2-D grid of size m x n representing a box, and you have n balls. The box is open on the top and bottom sides.

Each cell in the box has a diagonal board spanning two corners of the cell that can redirect a ball to the right or to the left.

  • A board that redirects the ball to the right spans the top-left corner to the bottom-right corner and is represented in the grid as 1.
  • A board that redirects the ball to the left spans the top-right corner to the bottom-left corner and is represented in the grid as -1.

We drop one ball at the top of each column of the box. Each ball can get stuck in the box or fall out of the bottom. A ball gets stuck if it hits a "V" shaped pattern between two boards or if a board redirects the ball into either wall of the box.

Return an array answer of size n where answer[i] is the column that the ball falls out of at the bottom after dropping the ball from the ith column at the top, or -1 if the ball gets stuck in the box.

Example 1:

Input: grid = [[1,1,1,-1,-1],[1,1,1,-1,-1],[-1,-1,-1,1,1],[1,1,1,1,-1],[-1,-1,-1,-1,-1]]
Output: [1,-1,-1,-1,-1]
Explanation: This example is shown in the photo.
Ball b0 is dropped at column 0 and falls out of the box at column 1.
Ball b1 is dropped at column 1 and will get stuck in the box between column 2 and 3 and row 1.
Ball b2 is dropped at column 2 and will get stuck on the box between column 2 and 3 and row 0.
Ball b3 is dropped at column 3 and will get stuck on the box between column 2 and 3 and row 0.
Ball b4 is dropped at column 4 and will get stuck on the box between column 2 and 3 and row 1.

Example 2:

Input: grid = [[-1]]
Output: [-1]
Explanation: The ball gets stuck against the left wall.

Example 3:

Input: grid = [[1,1,1,1,1,1],[-1,-1,-1,-1,-1,-1],[1,1,1,1,1,1],[-1,-1,-1,-1,-1,-1]]
Output: [0,1,2,3,4,-1] 

Constraints:

  • m == grid.length
  • n == grid[i].length
  • 1 <= m, n <= 100
  • grid[i][j] is 1 or -1.

球会落何处。

用一个大小为 m x n 的二维网格 grid 表示一个箱子。你有 n 颗球。箱子的顶部和底部都是开着的。

箱子中的每个单元格都有一个对角线挡板,跨过单元格的两个角,可以将球导向左侧或者右侧。

将球导向右侧的挡板跨过左上角和右下角,在网格中用 1 表示。
将球导向左侧的挡板跨过右上角和左下角,在网格中用 -1 表示。
在箱子每一列的顶端各放一颗球。每颗球都可能卡在箱子里或从底部掉出来。如果球恰好卡在两块挡板之间的 "V" 形图案,或者被一块挡导向到箱子的任意一侧边上,就会卡住。

返回一个大小为 n 的数组 answer ,其中 answer[i] 是球放在顶部的第 i 列后从底部掉出来的那一列对应的下标,如果球卡在盒子里,则返回 -1 。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/where-will-the-ball-fall
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

这是一道模拟题。题意说的很明白了,input 给的是一个 mxn 的矩阵,在矩阵顶部的每个位置上都有一个球,现在让球落下,根据矩阵里每个位置的挡板的情况,输出最后球的位置信息。

注意一开始球的位置是在矩阵外的,所以球落入第一排 matrix[0][y] 也需要判断。因为球只会根据挡板的位置而改变行进方向,而且挡板位置左上 - 右下用 1 表示,右上 - 左下用 -1 表示。这个表示方法正好对应了球下一个位置的方向,因为如果是左上 - 右下,正好是往右下走;如果是右上 - 左下,正好是往左下走。所以这道题我按照题目模拟出来即可。

时间O(mn) - 有 N 个球,每个球最坏情况都会从箱子底部调出来

空间O(n)

Java实现

 1 class Solution {
 2     int rows, cols;
 3 
 4     public int[] findBall(int[][] grid) {
 5         rows = grid.length;
 6         cols = grid[0].length;
 7         int[] res = new int[cols];
 8         for (int i = 0; i < cols; i++) {
 9             res[i] = helper(i, grid);
10         }
11         return res;
12     }
13 
14     private int helper(int n, int[][] grid) {
15         int r = 0;
16         int c = n;
17         while (r < rows) {
18             int nextC = c + grid[r][c];
19             if (nextC < 0 || nextC > cols - 1 || grid[r][c] != grid[r][nextC]) {
20                 return -1;
21             }
22             r++;
23             c = nextC;
24         }
25         return c;
26     }
27 }

 

LeetCode 题目总结

标签:box,Ball,1706,stuck,column,Will,int,ball,grid
来源: https://www.cnblogs.com/cnoodle/p/15949355.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有