E8本(数学)
次のE8本(数学)の問題へ
前のE8本(数学)の問題へ
E8本(数学) 029 Climb Stairs
C#のソース
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static string InputPattern = "InputX";
static List<string> GetInputList()
{
var WillReturn = new List<string>();
if (InputPattern == "Input1") {
WillReturn.Add("4");
//5
}
else if (InputPattern == "Input2") {
WillReturn.Add("45");
//1836311903
}
else {
string wkStr;
while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
}
return WillReturn;
}
static void Main()
{
List<string> InputList = GetInputList();
long N = long.Parse(InputList[0]);
// 場合の数[現在位置]なDP表
long[] DPArr = new long[N + 1];
DPArr[0] = 1;
for (int I = 0; I <= N; I++) {
Action<long> UpdateAct = (pNewI) =>
{
if (pNewI > N) return;
DPArr[pNewI] += DPArr[I];
};
UpdateAct(I + 1);
UpdateAct(I + 2);
}
Console.WriteLine(DPArr[N]);
}
}
解説
配るDPで解いてます。