-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBotMovement.java
More file actions
101 lines (82 loc) · 2.52 KB
/
BotMovement.java
File metadata and controls
101 lines (82 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//Problem Statement : A robot is located in the upper-left corner of a 4×4 grid.
//The robot can move either up, down, left, or right, but cannot go to the same location twice.
//The robot is trying to reach the lower-right corner of the grid. Your task is to find out
//the number of unique ways to reach the destination.
//INPUT SAMPLE:
//There is no input for this program.
//OUTPUT SAMPLE:
//Print out the number of unique ways for the robot to reach its destination.
//The number should be printed out as an integer ≥0.
package com.practice;
public class BotMovement
{
final int N = 4;
void printSolution(int sol[][])
{
for (int i = 0; i < N; i++)
{
for (int j = 0; j < N; j++)
System.out.print(" " + sol[i][j] +
" ");
System.out.println();
}
}
boolean isSafe(int grid[][], int x, int y)
{
// if (x,y outside grid) return false
return (x >= 0 && x < N && y >= 0 &&
y < N && grid[x][y] == 1);
}
boolean solvegrid(int grid[][])
{
int sol[][] = {{0, 0, 0, 0},
{0, 0, 0, 0},
{0, 0, 0, 0},
{0, 0, 0, 0}
};
if (solvegridUtil(grid, 0, 0, sol) == false)
{
System.out.print("Solution doesn't exist");
return false;
}
printSolution(sol);
return true;
}
boolean solvegridUtil(int grid[][], int x, int y,
int sol[][])
{
// if (x,y is goal) return true
if (x == N - 1 && y == N - 1)
{
sol[x][y] = 1;
return true;
}
// Check if grid[x][y] is valid
if (isSafe(grid, x, y) == true)
{
// mark x,y as part of solution path
sol[x][y] = 1;
if (solvegridUtil(grid, x + 1, y, sol))
return true;
if (solvegridUtil(grid, x, y + 1, sol))
return true;
if (solvegridUtil(grid, x - 1, y, sol))
return true;
if (solvegridUtil(grid, x, y - 1, sol))
return true;
sol[x][y] = 0; // backtrack
return false;
}
return false;
}
public static void main(String args[])
{
BotMovement bot = new BotMovement();
int grid[][] = {{1, 0, 0, 0},
{1, 1, 0, 1},
{0, 1, 0, 0},
{1, 1, 1, 1}
};
bot.solvegrid(grid);
}
}