#24910: 關鍵遞迴式


allllllan123456 (God of Computer Science)


f(m) = 2 * f(m-1) - f(m-n-2);
每次固定一個 n 就可以使用 dp
初始條件有點難,自己想