hdu5569 matrix
// #pragma comment(linker, "/STACK:1024000000,1024000000")
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <sstream>
#include <string>
#include <stack>
#include <queue>
#include <deque>
#include <vector>
#include <map>
#include <set>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <limits.h>
// #define DEBUG
#ifdef DEBUG
#define debug(...) printf( __VA_ARGS__ )
#else
#define debug(...)
#endif
#define MEM(x,y) memset(x, y,sizeof x)
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int,int> ii;
const LL inf = 1LL << 60;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
int n, m;
int A[1010][1010];
int step[110][110];
LL dp[1010][1010];
int main()
{
// freopen("in.txt","r",stdin);
// freopen("out.txt","w",stdout);
while(scanf("%d%d",&n,&m) != EOF){
for (int i = 1;i <= n;++i)
for (int j = 1;j <= m;++j)
scanf("%d",&A[i][j]);
for (int i = 0;i <= n + 1;++i)
for (int j = 0;j <= m + 1;++j)
dp[i][j] = inf;
dp[0][1] = dp[1][0] = 0;
dp[1][1] = 0;
for (int i = 1;i <= n;++i){
for (int j = 1;j <= m;++j){
if ((i+j)%2){
dp[i][j] = min(dp[i-1][j] + 1LL*A[i-1][j]*A[i][j], dp[i][j]);
dp[i][j] = min(dp[i][j-1] + 1LL*A[i][j-1]*A[i][j], dp[i][j]);
}else dp[i][j] = min(dp[i][j-1], dp[i-1][j]);
}
}
printf("%lld
", dp[n][m]);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【경쟁 프로 전형적인 90문】008의 해설(python)의 해설 기사입니다. 해설의 이미지를 봐도 모르는 (이해력이 부족한) 것이 많이 있었으므로, 나중에 다시 풀었을 때에 확인할 수 있도록 정리했습니다. ※순차적으로, 모든 문제의 해설 기사를 들어갈 예정입니다. 문자열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.