JavaAlgorithms/DynamicProgramming/BoardPath.java

76 lines
1.7 KiB
Java
Raw Normal View History

2020-05-25 05:42:16 +08:00
package DynamicProgramming;
2020-05-25 05:41:14 +08:00
/*
2020-10-24 18:23:28 +08:00
* this is an important Algo in which
* we have starting and ending of board and we have to reach
* we have to count no. of ways
2020-05-25 05:41:14 +08:00
* that help to reach end point i.e number by rolling dice
* which have 1 to 6 digits
2020-05-23 08:04:56 +08:00
2020-05-25 05:41:14 +08:00
Test Case:
here target is 10
int n=10;
startAlgo();
System.out.println(bpR(0,n));
System.out.println(endAlgo()+"ms");
int[] strg=new int [n+1];
startAlgo();
System.out.println(bpRS(0,n,strg));
System.out.println(endAlgo()+"ms");
startAlgo();
System.out.println(bpIS(0,n,strg));
System.out.println(endAlgo()+"ms");
2020-10-24 18:23:28 +08:00
2020-05-25 05:41:14 +08:00
*/
2020-05-23 08:04:56 +08:00
public class BoardPath {
2020-10-24 18:23:28 +08:00
public static long startTime;
public static long endTime;
public static void startAlgo() {
startTime = System.currentTimeMillis();
}
public static long endAlgo() {
endTime = System.currentTimeMillis();
return endTime - startTime;
}
public static int bpR(int start, int end) {
if (start == end) {
return 1;
} else if (start > end) return 0;
int count = 0;
for (int dice = 1; dice <= 6; dice++) {
count += bpR(start + dice, end);
}
return count;
}
2020-05-23 08:04:56 +08:00
2020-10-24 18:23:28 +08:00
public static int bpRS(int curr, int end, int strg[]) {
if (curr == end) {
return 1;
} else if (curr > end) return 0;
if (strg[curr] != 0) return strg[curr];
int count = 0;
for (int dice = 1; dice <= 6; dice++) {
count += bpRS(curr + dice, end, strg);
}
strg[curr] = count;
return count;
}
2020-05-23 08:04:56 +08:00
2020-10-24 18:23:28 +08:00
public static int bpIS(int curr, int end, int[] strg) {
strg[end] = 1;
for (int i = end - 1; i >= 0; i--) {
int count = 0;
for (int dice = 1; dice <= 6 && dice + i < strg.length; dice++) {
count += strg[i + dice];
}
strg[i] = count;
}
return strg[0];
}
2020-05-23 08:04:56 +08:00
}