[leetcode]488. Zuma Game
題目鏈接: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 -> WWInput: "WWRRBBWW", "WRBRW"
Output: 2
Explanation: WWRRBBWW -> WWRR[R]BBWW -> WWBBWW -> WWBB[B]WW -> WWWW -> emptyInput:"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:
方法一:(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 ballsif (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;} };
總結
以上是生活随笔為你收集整理的[leetcode]488. Zuma Game的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 3天学会Jenkins_1_Jenkin
- 下一篇: win7计算机不支持此接口,Win7 "