Submission #56366

#TimeUsernameProblemLanguageResultExecution timeMemory
56366leejseo배열 탈출 (GA8_array)C++98
49 / 100
698 ms66560 KiB
#include <stdio.h> #include <algorithm> using namespace std; int A[2230][2230], D[2230][2230], N; void input(){ scanf("%d", &N); for (int i=1; i<=N; i++){ for (int j=1; j<=N; j++){ scanf("%d", &A[i][j]); } } } void DP(){ D[1][1] = 0; for (int i=0; i<=N; i++){ D[0][i] = (int)1e9; D[i][0] = (int)1e9; } for (int i=1; i<=N; i++){ for (int j=1; j<=N; j++){ if (i == 1 && j == 1) continue; D[i][j] = (int)1e9; D[i][j] = min(D[i][j], D[i-1][j] + max(0, A[i][j] - A[i-1][j] + 1)); D[i][j] = min(D[i][j], D[i][j-1] + max(0, A[i][j] - A[i][j-1] + 1)); } } } int main(void){ input(); DP(); printf("%d\n", D[N][N]); }

Compilation message (stderr)

array.cpp: In function 'void input()':
array.cpp:7:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &N);
  ~~~~~^~~~~~~~~~
array.cpp:10:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
    scanf("%d", &A[i][j]);
    ~~~~~^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...