이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <algorithm>
int N; long long A[2222][2222],D[2222][2222];
int main()
{
scanf ("%d",&N);
for (int i=0;i<N;i++) for (int j=0;j<N;j++){
scanf ("%d",&A[i][j]);
}
for (int i=0;i<N;i++) for (int j=0;j<N;j++){
if (i == 0 && j == 0) D[i][j] = 0;
else D[i][j] = 1000000000000000ll;
if (i != 0){
int a = (A[i-1][j] > A[i][j]) ? 0 : A[i][j] - A[i-1][j] + 1;
if (D[i][j] > D[i-1][j] + a)
D[i][j] = D[i-1][j] + a;
}
if (j != 0){
int a = (A[i][j-1] > A[i][j]) ? 0 : A[i][j] - A[i][j-1] + 1;
if (D[i][j] > D[i][j-1] + a)
D[i][j] = D[i][j-1] + a;
}
}
printf ("%d\n",D[N-1][N-1]);
return 0;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |