link 题意:乘车,有3种票 1.20块坐1站 2.坐90分钟,50块 3.坐1440分钟,120块 现给出到达每个站的时间,问最优策略 思路: 简单DP,限定条件的3个转移方向,取最小的那个就行了 dp[i]代表到达第i个站的最小花费 /** @Date : 2017-04-10 18:19:53 * @FileName: 760D dp.cpp * @Platform: Windows * @Author : Lweleth (SoundEarlf@gmail.com) * @Link :…