Submission #1114008

#TimeUsernameProblemLanguageResultExecution timeMemory
1114008Dan4LifeThe Kingdom of JOIOI (JOI17_joioi)C++17
0 / 100
323 ms48520 KiB
#include <bits/stdc++.h> using namespace std; #define pb push_back #define sz(a) (int)a.size() #define all(a) begin(a),end(a) const int N = (int)2e3+10; int n, m, a[N][N], b[N][N], c[N][N], dp[N][N], pref[N][N], lst[N]; void Rotate(){ for(int i = 0; i < n; i++) for(int j = 0; j < m; j++) c[i][j] = b[i][j]; for(int i = 0; i < n; i++) for(int j = 0; j < m; j++) b[j][i] = c[i][m-j-1]; swap(n,m); } bool calc(){ for(int k : {0,1}){ memset(dp,0,sizeof(dp)); memset(pref,0,sizeof(pref)); memset(lst,0,sizeof(lst)); for(int i = 0; i < n; i++){ for(int j = 0; j < m; j++){ pref[i][j+1] = pref[i][j]+(!b[i][j] or b[i][j]==k); if(b[i][j]==k) lst[i]=j; } } for(int j = 0; j <= m; j++) dp[0][j] = (pref[0][j]==j and j>=lst[0]); for(int i = 0; i < n; i++){ for(int j = 0; j <= m; j++){ if(pref[i][j]==j and j>=lst[i]){ if(!i) dp[i][j]=1; else{ for(int k = lst[i-1]; k <= j; k++) dp[i][j]|=dp[i-1][k]; } } } } bool ok = 0; for(int i = 1; i <= m; i++) ok|=dp[n-1][i]; if(ok) return 1; } return 0; } bool chk(int R){ memset(b,0,sizeof(b)); int mn = (int)1e9, mx = 0; for(int i = 0; i < n; i++) for(int j = 0; j < m; j++) mn = min(mn, a[i][j]), mx = max(mx, a[i][j]); for(int i = 0; i < n; i++) for(int j = 0; j < m; j++) b[i][j]=(a[i][j]>mn+R?2:a[i][j]<mx-R); bool ok = 0; for(int _ : {0,1,2,3}) ok|=calc(), Rotate(); return ok; } int main(){ cin >> n >> m; for(int i = 0; i < n; i++) for(int j = 0; j < m; j++) cin >> a[i][j]; int l = 0, r = (int)1e9; while(l<r){ int mid = (l+r)/2; if(chk(mid)) r=mid; else l=mid+1; } cout << l << "\n"; }

Compilation message (stderr)

joioi.cpp: In function 'bool chk(int)':
joioi.cpp:60:10: warning: unused variable '_' [-Wunused-variable]
   60 |  for(int _ : {0,1,2,3}) ok|=calc(), Rotate();
      |          ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...