To the Max POJ - 1050 dp 最大子矩阵(最大连续子序列)
题目连接http://poj.org/problem?id=1050
#include<cstdio>
#include<cstring>
using namespace std;
#define inf 0x3f3f3f3f
int dp[101][101];
int main()
{
int n;
int m;
scanf("%d",&a...
转载
2018-10-30 21:01:05 ·
476 阅读 ·
0 评论