2017年8月11日

hdu 5569

摘要: 题意:一个矩阵,从(1,1)走到(n,m),只能右,下,问最短路径和最短,路径和为走过的点a1*a2+a2*a3+..... 思路:暴力转移即可 阅读全文

posted @ 2017-08-11 16:15 hhhhx 阅读(109) 评论(0) 推荐(0) 编辑

bzoj 2748

摘要: 1 #include 2 using namespace std; 3 const int N=1005; 4 int dp[55][1010]; 5 6 int main(){ 7 int n,s,e; 8 cin>>n>>s>>e; 9 dp[0][s]=1; 10 int x; 11 for(int i=1;i=0;j--){ 1... 阅读全文

posted @ 2017-08-11 15:43 hhhhx 阅读(95) 评论(0) 推荐(0) 编辑

导航