Submission #223591

#TimeUsernameProblemLanguageResultExecution timeMemory
223591DodgeBallManThe Kingdom of JOIOI (JOI17_joioi)C++14
100 / 100
1322 ms39288 KiB
#include <bits/stdc++.h> using namespace std; const int N = 2e3 + 10; int H, W, A[N][N]; int gmin, gmax; bool check( int th ) { int sep = 0; for( int i = 0 ; i < H ; ++i ) { for( int j = 0 ; j < W ; ++j ) { if( A[i][j] < gmax - th ) { sep = max( sep, j + 1 ); } } for( int j = 0; j < W; ++j ) { if( gmin + th < A[i][j] ) { if (j < sep) return false; } } } return true; } void flip_row() { for (int i = 0; i < H / 2; ++i) { for (int j = 0; j < W; ++j) { swap(A[i][j], A[H - 1 - i][j]); } } } void flip_col() { for (int i = 0; i < H; ++i) { for (int j = 0; j < W / 2; ++j) { swap(A[i][j], A[i][W - 1 - j]); } } } int solve() { int lo = 0, hi = gmax - gmin; while (lo < hi) { int mid = (lo + hi) / 2; if (check(mid)) { hi = mid; } else { lo = mid + 1; } } return lo; } int main() { scanf("%d%d", &H, &W); for (int i = 0; i < H; ++i) { for (int j = 0; j < W; ++j) { scanf("%d", &(A[i][j])); } } gmin = gmax = A[0][0]; for (int i = 0; i < H; ++i) { for (int j = 0; j < W; ++j) { gmin = min(gmin, A[i][j]); gmax = max(gmax, A[i][j]); } } int ret = solve(); flip_row(); ret = min(ret, solve()); flip_col(); ret = min(ret, solve()); flip_row(); ret = min(ret, solve()); printf("%d\n", ret); return 0; }

Compilation message (stderr)

joioi.cpp: In function 'int main()':
joioi.cpp:56:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d", &H, &W);
  ~~~~~^~~~~~~~~~~~~~~~
joioi.cpp:59: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...