网格行走(得分 50 分):您位于 N 维网格中的位置(x_1,x2,...,x_N)
。网格的尺寸为(D_1,D_2,...D_N)
。N
一步,你可以在任何一个维度上向前或向后走一步。(所以总是2N
有可能的不同动作)。您可以通过多少种方式采取M
措施使您在任何时候都不会离开网格?如果您愿意,您也可以离开网x_i
格x_i <= 0 or x_i > D_i
。
输入:
第一行包含测试用例的数量T
。T
测试用例如下。对于每个测试用例,第一行包含N
和M
,第二行包含x_1,x_2...,x_N
,第三行包含D_1,D_2,...,D_N
。
因此,在上述解决方案中,我尝试采用一维数组。该网站声称38753340
是答案,但我没有得到它。
public class GridWalking {
/**
* @param args
*/
public static void main(String[] args) {
try {
long arr[] = new long[78];
long pos = 44;
long totake = 287;
/*
* Double arr[] = new Double[3]; Double pos = 0; Double totake = 5;
*/
Double val = calculate(arr, pos, totake);
System.out.println(val % 1000000007);
} catch (Exception e) {
System.out.println(e);
e.printStackTrace();
}
}
public static HashMap<String, Double> calculated = new HashMap<String, Double>();
private static Double calculate(long[] arr, long pos, long totake) {
if (calculated.containsKey(pos + "" + totake)) {
return calculated.get(pos + "" + totake);
}
if (0 == totake) {
calculated.put(pos + "" + totake, new Double(1));
return new Double(1);
}
if (pos == arr.length - 1) {
Double b = calculate(arr, pos - 1, totake - 1);
Double ret = b;
calculated.put(pos + "" + totake, new Double(ret));
return ret;
}
if (pos == 0) {
Double b = calculate(arr, pos + 1, totake - 1);
Double ret = b;
calculated.put(pos + "" + totake, new Double(ret));
return ret;
}
Double a = calculate(arr, pos + 1, totake - 1);
Double b = calculate(arr, pos - 1, totake - 1);
Double ret = (a + b);
calculated.put(pos + "" + totake, ret);
return ret;
}
}