您的位置:首页 > 其它

LeetCode-Design Snake Game

2016-08-15 09:45 351 查看
Design a Snake game that is played on a device with screen size = width x height. Play the game online if you are not familiar with the game.

The snake is initially positioned at the top left corner (0,0) with length = 1 unit.

You are given a list of food's positions in row-column order. When a snake eats the food, its length and the game's score both increase by 1.

Each food appears one by one on the screen. For example, the second food will not appear until the first food was eaten by the snake.

When a food does appear on the screen, it is guaranteed that it will not appear on a block occupied by the snake.

Example:

Given width = 3, height = 2, and food = [[1,2],[0,1]].

Snake snake = new Snake(width, height, food);

Initially the snake appears at position (0,0) and the food at (1,2).

|S| | |
| | |F|

snake.move("R"); -> Returns 0

| |S| |
| | |F|

snake.move("D"); -> Returns 0

| | | |
| |S|F|

snake.move("R"); -> Returns 1 (Snake eats the first food and right after that, the second food appears at (0,1) )

| |F| |
| |S|S|

snake.move("U"); -> Returns 1

| |F|S|
| | |S|

snake.move("L"); -> Returns 2 (Snake eats the second food)

| |S|S|
| | |S|

snake.move("U"); -> Returns -1 (Game over because snake collides with border)

Credits:
Special thanks to @elmirap for adding this problem and creating all test cases.

Analysis:

Use a Deque to store snake, fast add head and remove tail.

Use a HashSet to fast query about occupancy of a point.

Solution:

public class SnakeGame {
Set<Integer> snakeSet;
int[][] foods;
int foodInd;
int score;
Deque<Integer> snake;
int w,h;
int[] head;

/** Initialize your data structure here.
@param width - screen width
@param height - screen height
@param food - A list of food positions
E.g food = [[1,1], [1,0]] means the first food is positioned at [1,1], the second is at [1,0]. */
public SnakeGame(int width, int height, int[][] food) {
foods = food;
foodInd = 0;
w = width;
h = height;

snake = new LinkedList<Integer>();
snake.addFirst(0);
snakeSet = new HashSet<Integer>();
snakeSet.add(0);
head = new int[]{0,0};

score = 0;
}

/** Moves the snake.
@param direction - 'U' = Up, 'L' = Left, 'R' = Right, 'D' = Down
@return The game's score after the move. Return -1 if game over.
Game over when snake crosses the screen boundary or bites its body. */
public int move(String direction) {
// whether move is valid
int[] newHead;
switch (direction.charAt(0)){
case 'U' : newHead = new int[]{head[0]-1,head[1]};
break;
case 'L' : newHead = new int[]{head[0],head[1]-1};
break;
case 'R' : newHead = new int[]{head[0],head[1]+1};
break;
case 'D' : newHead = new int[]{head[0]+1,head[1]};
break;
default : return -1;
}
if (newHead[0]<0 || newHead[0]>=h || newHead[1]<0 || newHead[1]>=w){
return -1;
}

int newHeadInd = newHead[0]*w+newHead[1];
int tailInd = snake.peekLast();
if (snakeSet.contains(newHeadInd) && (newHeadInd!=tailInd)){
return -1;
}

// if eat a food
if (foodInd < foods.length && newHead[0] == foods[foodInd][0] && newHead[1] == foods[foodInd][1]){
score++;
foodInd++;
} else {
// regular move
snake.removeLast();
snakeSet.remove(tailInd);
}
snake.addFirst(newHeadInd);
snakeSet.add(newHeadInd);
head = newHead;

return score;
}
}

/**
* Your SnakeGame object will be instantiated and called as such:
* SnakeGame obj = new SnakeGame(width, height, food);
* int param_1 = obj.move(direction);
*/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: