摘要: 这道题目心得,学会怎么求一个矩阵从(x1,y1)到(x2,y2)的数字的总和,并且还有结合动态规划,#include"stdafx.h"#include <stdio.h> #include <math.h> #include <algorithm> using namespace std; int matrix[8][8]; int s[8][8][8][8]; int dp[15][8][8][8][8]; int cnt; double sum; double mmin(double a, double b) { return a 阅读全文
posted @ 2011-05-21 10:26 张兰云 阅读(216) 评论(0) 推荐(0) 编辑