Submission #780755

#TimeUsernameProblemLanguageResultExecution timeMemory
780755AndreyMaxcomp (info1cup18_maxcomp)C++14
60 / 100
1061 ms12648 KiB
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n,m,a,b,ans = -INT_MAX; cin >> n >> m; int haha[n][m]; for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { cin >> haha[i][j]; } } for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { for(int k = 0; k < n; k++) { for(int y = 0; y < m; y++) { a = haha[i][j]; b = haha[k][y]; if(a < b) { swap(a,b); } ans = max(ans,a-b-abs(i-k)-abs(j-y)-1); } } } } cout << ans; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...