[leetcode]488. Zuma Game

29 篇文章 0 订阅

题目链接:https://leetcode.com/problems/zuma-game/description/

Think about Zuma Game. You have a row of balls on the table, colored red(R), yellow(Y), blue(B), green(G), and white(W). You also have several balls in your hand.

Each time, you may choose a ball in your hand, and insert it into the row (including the leftmost place and rightmost place). Then, if there is a group of 3 or more balls in the same color touching, remove these balls. Keep doing this until no more balls can be removed.

Find the minimal balls you have to insert to remove all the balls on the table. If you cannot remove all the balls, output -1.

Examples:
Input: "WRRBBW", "RB" Output: -1 Explanation: WRRBBW -> WRR[R]BBW -> WBBW -> WBB[B]W -> WW Input: "WWRRBBWW", "WRBRW" Output: 2 Explanation: WWRRBBWW -> WWRR[R]BBWW -> WWBBWW -> WWBB[B]WW -> WWWW -> empty Input:"G", "GGGGG" Output: 2 Explanation: G -> G[G] -> GG[G] -> empty Input: "RBYYBBRRB", "YRBGB" Output: 3 Explanation: RBYYBBRRB -> RBYY[Y]BBRRB -> RBBBRRB -> RRRB -> B -> B[B] -> BB[B] -> empty

Note:

  1. You may assume that the initial row of balls on the table won’t have any 3 or more consecutive balls with the same color.
  2. The number of balls on the table won't exceed 20, and the string represents these balls is called "board" in the input.
  3. The number of balls in your hand won't exceed 5, and the string represents these balls is called "hand" in the input.
  4. Both input strings will be non-empty and only contain characters 'R','Y','B','G','W'.

方法一:(dfs)

class Solution {
public:
    int findMinStep(string board, string hand) {
        list<Node> board_list;
        vector<int> hand_count(CHAR_MAX, 0);
        int remain_in_hand = 0;
        for (int i = 0; i < board.length(); ++i) {
            board_list.push_back(Node(board[i], 1));
            if (i != board.length() - 1 && board[i] == board[i + 1]) {
                board_list.back().count++;
                i++;
            }
        }

        for (char ch : hand) {
            hand_count[ch]++;
            remain_in_hand ++;
        }

        int ret = DFS(board_list, hand_count, remain_in_hand);
        return ret == kMaxNeed ? -1 : ret;
    }
private:
    // the kMaxNeed need to  be greater than 5; 
    const int kMaxNeed=6;

    struct Node{
        char ch;
        int count;
        Node(char c,int i):ch(c),count(i){}
    };
    void CleanBoard(list<Node> &board){
        auto it = board.begin();
        while (it != board.end()) {
            if (it->count >= 3) {
                it = board.erase(it);
                // Ensure iterator != end(), before you use the it
                // Ensure iterator != begin(), before invoking prev(it)
                if (it != board.begin() &&
                    it != board.end() &&
                    it->ch == prev(it)->ch)
                {
                    it->count += prev(it)->count;
                    board.erase(prev(it));
                }
            } else {
                it++;
            }
        }
    }
    int DFS(list<Node> board, vector<int> &hand, int remain_in_hand) {
        CleanBoard(board);
        if (board.size() == 0)  return 0;
        //cannot remove all the balls
        if (remain_in_hand <= 0)  return kMaxNeed;
        int min_need = kMaxNeed;
        for (auto it = board.begin(); it != board.end(); ++it) {
            int need = 3 - it->count;
            if (hand[it->ch] >= need) {
                hand[it->ch] -= need;
                it->count += need;
                list<Node> next_board = board;
                int ret = DFS(next_board, hand, remain_in_hand - need);
                min_need = min(min_need, ret + need);
                it->count -= need;
                hand[it->ch] += need;
            }
        }
        return min_need;
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值