题目地址:https://leetcode-cn.com/problems/candy-crush/

题目描述

This question is about implementing a basic elimination algorithm for Candy Crush.

Given a 2D integer array board representing the grid of candy, different positive integers board[i][j] represent different types of candies. A value of board[i][j] = 0 represents that the cell at position (i, j) is empty. The given board represents the state of the game following the player’s move. Now, you need to restore the board to a stable state by crushing candies according to the following rules:

  1. If three or more candies of the same type are adjacent vertically or horizontally, “crush” them all at the same time - these positions become empty.
  2. After crushing all candies simultaneously, if an empty space on the board has candies on top of itself, then these candies will drop until they hit a candy or bottom at the same time. (No new candies will drop outside the top boundary.)
  3. After the above steps, there may exist more candies that can be crushed. If so, you need to repeat the above steps.
  4. If there does not exist more candies that can be crushed (ie. the board is stable), then return the current board.
  5. You need to perform the above rules until the board becomes stable, then return the current board.

Example:

  1. Input:
  2. board =
  3. [[110,5,112,113,114],[210,211,5,213,214],[310,311,3,313,314],[410,411,412,5,414],[5,1,512,3,3],[610,4,1,613,614],[710,1,2,713,714],[810,1,2,1,1],[1,1,2,2,2],[4,1,4,4,1014]]
  4. Output:
  5. [[0,0,0,0,0],[0,0,0,0,0],[0,0,0,0,0],[110,0,0,0,114],[210,0,0,0,214],[310,0,0,113,314],[410,0,0,213,414],[610,211,112,313,614],[710,311,412,613,714],[810,411,512,713,1014]]
  6. Explanation:

Note:

  1. The length of board will be in the range [3, 50].
  2. The length of board[i] will be in the range [3, 50].
  3. Each board[i][j] will initially start as an integer in the range [1, 2000].

题目大意

消消乐玩过没有?这就是开始消除至少有三个相连的糖果,一直到达没有糖果可以消除为止。

解题方法

暴力

这个题和炸弹人361. Bomb Enemy有点类似。题目是让从刚开始的Board就开始同时消除该board下所有的至少三个相连的数字。很显然,我们必须保存下目前可以消除的位置,在把当前的board遍历完成之后,在一起一次性全部消除。具体来说分为三步:

  1. 找出行和列中所有相连且相等长度大于三的数字位置。(对于每个位置都向四个方向寻找,类似于炸弹人寻找墙壁)
  2. 把这些位置的值设置为0。(此时如果这些位置不存在,则返回结果)
  3. 被消除的这些位置应该被消除掉,所以把上面的数字都向下移。(对于每列而言,从下向上查找不为0的数字,放到从下面的倒数位置上)

C++代码如下:

  1. class Solution {
  2. public:
  3. vector<vector<int>> candyCrush(vector<vector<int>>& board) {
  4. const int M = board.size();
  5. const int N = board[0].size();
  6. while (true) {
  7. vector<pair<int, int>> del;
  8. for (int i = 0; i < M; ++i) {
  9. for (int j = 0; j < N; ++j) {
  10. if (board[i][j] == 0) continue;
  11. int x0 = i, x1 = i, y0 = j, y1 = j;
  12. while (x0 >= 0 && x0 > i - 3 && board[x0][j] == board[i][j]) x0--;
  13. while (x1 < M && x1 < i + 3 && board[x1][j] == board[i][j]) x1++;
  14. while (y0 >= 0 && y0 > j - 3 && board[i][y0] == board[i][j]) y0--;
  15. while (y1 < N && y1 < j + 3 && board[i][y1] == board[i][j]) y1++;
  16. if (x1 - x0 > 3 || y1 - y0 > 3) {
  17. del.push_back({i, j});
  18. }
  19. }
  20. }
  21. if (del.empty()) break;
  22. for (auto& d : del) {
  23. board[d.first][d.second] = 0;
  24. }
  25. for (int j = 0; j < N; ++j) {
  26. int t = M - 1;
  27. for (int i = M - 1; i >= 0; --i) {
  28. if (board[i][j])
  29. swap(board[i][j], board[t--][j]);
  30. }
  31. }
  32. }
  33. return board;
  34. }
  35. };

日期

2019 年 9 月 21 日 —— 莫生气,我若气病谁如意

【LeetCode】723. Candy Crush 解题报告 (C++)的更多相关文章

  1. [LeetCode] 723. Candy Crush 糖果消消乐

    This question is about implementing a basic elimination algorithm for Candy Crush. Given a 2D intege ...

  2. LeetCode 723. Candy Crush

    原题链接在这里:https://leetcode.com/problems/candy-crush/ 题目: This question is about implementing a basic e ...

  3. [LeetCode] 723. Candy Crush 糖果粉碎

    This question is about implementing a basic elimination algorithm for Candy Crush. Given a 2D intege ...

  4. LeetCode 1 Two Sum 解题报告

    LeetCode 1 Two Sum 解题报告 偶然间听见leetcode这个平台,这里面题量也不是很多200多题,打算平时有空在研究生期间就刷完,跟跟多的练习算法的人进行交流思想,一定的ACM算法积 ...

  5. 【LeetCode】Permutations II 解题报告

    [题目] Given a collection of numbers that might contain duplicates, return all possible unique permuta ...

  6. 【LeetCode】Island Perimeter 解题报告

    [LeetCode]Island Perimeter 解题报告 [LeetCode] https://leetcode.com/problems/island-perimeter/ Total Acc ...

  7. 【LeetCode】01 Matrix 解题报告

    [LeetCode]01 Matrix 解题报告 标签(空格分隔): LeetCode 题目地址:https://leetcode.com/problems/01-matrix/#/descripti ...

  8. 【LeetCode】Largest Number 解题报告

    [LeetCode]Largest Number 解题报告 标签(空格分隔): LeetCode 题目地址:https://leetcode.com/problems/largest-number/# ...

  9. 【LeetCode】Gas Station 解题报告

    [LeetCode]Gas Station 解题报告 标签(空格分隔): LeetCode 题目地址:https://leetcode.com/problems/gas-station/#/descr ...

随机推荐

  1. LR SP PC

    LR SP PC 深入理解ARM的这三个寄存器,对编程以及操作系统的移植都有很大的裨益. 1.堆栈指针r13(SP):每一种异常模式都有其自己独立的r13,它通常指向异常模式所专用的堆栈,也就是说五种 ...

  2. 小程序https启用tls1.2

    公司的web服务器是iis7,在开发微信小程序的时候,需要启用TLS1.2. 将下面的代码复制到文本,存为reg文档,双击搞定. Windows Registry Editor Version 5.0 ...

  3. Java的那些小事

    一,JDK和JRE有什么区别? JRE:Java Runtime Environment(java运行时环境).即java程序的运行时环境,包含了java虚拟机,java基础类库. JDK:Java ...

  4. 阿里云NAS性能测试

    测试方法:根据阿里云NAS官方文档进行测试 测试对象:性能型NAS,总容量1PB,已使用27.49GB(计算吞吐量时按30GB计算) 随机读IOPS测试 测试命令 fio -numjobs=1 -io ...

  5. 分布式事务(3)---强一致性分布式事务Atomikos实战

    分布式事务(1)-理论基础 分布式事务(2)---强一致性分布式事务解决方案 分布式事务(4)---最终一致性方案之TCC 前面介绍强一致性分布式解决方案,这里用Atomikos框架写一个实战的dem ...

  6. 设计和实现OLAP解决方案 [转]

    第一讲 简介首先,啥叫数据仓库? 数据仓库就是数据的仓库!用外文说叫Data Warehouse,简称DW. 是不是哐当倒下一片啊,要不咱换个专业点的说法? 数据仓库是一个面向主题的.集成的.相对稳定 ...

  7. 【leetcode】598. Range Addition II

    You are given an m x n matrix M initialized with all 0's and an array of operations ops, where ops[i ...

  8. 容器之分类与各种测试(四)——multimap

    multiset和multimap的具体区别在于,前者的key值就是自己存储的value,后者的key与value是分开的不相关的. 例程 #include<stdexcept> #inc ...

  9. 简化版chmod

    我们知道对文件访问权限的修改在Shell下可通过chmod来进行 例如 可以看到v.c文件从无权限到所有者可读可写可执行.群组和其他用户可读可执行 chmod函数原型 int chmod(const ...

  10. 100个Shell脚本—【脚本6】拷贝目录

    [脚本6]拷贝目录 编写shell脚本,把/root/目录下的所有目录(只需要一级)拷贝到/tmp/目录下: 一.脚本 #!/bin/bash cd /root list=(`ls`) for i i ...