Submission #402177

#TimeUsernameProblemLanguageResultExecution timeMemory
402177b00n0rpRectangles (IOI19_rect)C++17
Compilation error
0 ms0 KiB
#include "rect.h" #include <bits/stdc++.h> using namespace std; #define ll long long #define vi vector<int> #define pb push_back #define REP(i,n) for(int i = 0; i < n; i++) #define FOR(i,a,b) for(int i = a; i < b; i++) #define FORD(i,a,b) for(int i = a; i >= b; i --) #define pii pair<int,int> #define F first #define S second #define all(v) v.begin(),v.end() #define SZ(v) (int)v.size() const ll MX = 2505; ll ans = 0; int n,m; int gl[MX][MX],gr[MX][MX],gu[MX][MX],gd[MX][MX]; map<ll,int> row_map,col_map; bitset<MX*MX*6> b1,b2; vector<pair<ll,pii> > quer_row,quer_col; void check_rectangle(int x1,int y1,int x2,int y2,int q){ quer_row.pb({(y1-1)*MX*MX+(y2+1)*MX+x1,{x2,q}}); quer_col.pb({(x1-1)*MX*MX+(x2+1)*MX+y1,{y2,q}}); // cout << x1 << " " << y1 << " " << x2 << " " << y2 << "\n"; // cout << (y1-1)*MX*MX+(y2+1)*MX+x1 << " " << x2 << "\n"; // cout << (x1-1)*MX*MX+(x2+1)*MX+y1 << " " << y2 << "\n"; } ll count_rectangles(vector<vi> a){ n = a.size(); m = a[0].size(); if(n <= 2 or m <= 2) return 0; FORD(i,n-1,0){ stack<int> st; REP(j,m){ gl[i][j] = gr[i][j] = gu[i][j] = gd[i][j] = -1; } REP(j,m){ while(st.size() and a[i][st.top()] <= a[i][j]){ gr[i][st.top()] = j; st.pop(); } st.push(j); } while(!st.empty()) st.pop(); FORD(j,m-1,0){ while(st.size() and a[i][st.top()] <= a[i][j]){ gl[i][st.top()] = j; st.pop(); } st.push(j); } REP(j,m){ if(gr[i][j] != -1 and gr[i][j] != j+1){ ll val = j*MX*MX+gr[i][j]*MX+i; if(row_map.find(val+1) != row_map.end()){ row_map[val] = row_map[val+1]; } else row_map[val] = i; } if(gl[i][j] != -1 and gl[i][j] != j-1 and gr[i][gl[i][j]] != j){ ll val = gl[i][j]*MX*MX+j*MX+i; if(row_map.find(val+1) != row_map.end()){ row_map[val] = row_map[val+1]; } else row_map[val] = i; } } } FORD(j,m-1,0){ stack<int> st; REP(i,n){ while(st.size() and a[st.top()][j] <= a[i][j]){ gd[st.top()][j] = i; st.pop(); } st.push(i); } while(!st.empty()) st.pop(); FORD(i,n-1,0){ while(st.size() and a[st.top()][j] <= a[i][j]){ gu[st.top()][j] = i; st.pop(); } st.push(i); } REP(i,n){ if(gd[i][j] != -1 and gd[i][j] != i+1){ ll val = i*MX*MX+gd[i][j]*MX+j; if(col_map.find(val+1) != col_map.end()){ col_map[val] = col_map[val+1]; } else col_map[val] = j; } if(gu[i][j] != -1 and gu[i][j] != i-1 and gd[gu[i][j]][j] != i){ ll val = gu[i][j]*MX*MX+i*MX+j; if(col_map.find(val+1) != col_map.end()){ col_map[val] = col_map[val+1]; } else col_map[val] = j; } } } vector<ll> bruh; FOR(i,1,n-1){ FOR(j,1,m-1){ // topleft if(gr[i][j-1] != -1 and gd[i-1][j] != -1){ bruh.pb((i)*MX*MX*MX+(j)*MX*MX+(gd[i-1][j]-1)*MX+gr[i][j-1]-1); } // topright if(gl[i][j+1] != -1 and gd[i-1][j] != -1){ bruh.pb((i)*MX*MX*MX+(gl[i][j+1]+1)*MX*MX+(gd[i-1][j]-1)*MX+j); } // bottomleft if(gr[i][j-1] != -1 and gu[i+1][j] != -1){ bruh.pb((gu[i+1][j]+1)*MX*MX*MX+(j)*MX*MX+(i)*MX+gr[i][j-1]-1); } // bottomright if(gl[i][j+1] != -1 and gu[i+1][j] != -1){ bruh.pb((gu[i+1][j]+1)*MX*MX*MX+(gl[i][j+1]+1)*MX*MX+(i)*MX+j); } // clockwise if(gr[i][j-1] != -1 and gd[i-1][gr[i][j-1]-1] != -1){ bruh.pb((i)*MX*MX*MX+(j)*MX*MX+(gd[i-1][gr[i][j-1]-1]-1)*MX+gr[i][j-1]-1); } // anti-clockwise if(gl[i][j+1] != -1 and gd[i-1][gl[i][j+1]+1] != -1){ bruh.pb((i)*MX*MX*MX+(gl[i][j+1]+1)*MX*MX+(gd[i-1][gl[i][j+1]+1]-1)*MX+j); } } } sort(all(bruh)); int q = 0; REP(i,SZ(bruh)){ if(i == 0 or bruh[i] != bruh[i-1]){ check_rectangle(bruh[i]/(MX*MX*MX),(bruh[i]/(MX*MX))%MX,(bruh[i]/MX)%MX,bruh[i]%MX,q); q++; } } if(n > 700 and m > 700) return; sort(all(quer_col)); sort(all(quer_row)); int cur = 0; for(auto x:col_map){ // cout << "col: " << x.F << " " << x.S << "\n"; while(cur < q and quer_col[cur].F < x.F) cur++; while(cur < q and quer_col[cur].F == x.F){ if(quer_col[cur].S.F <= x.S) b1[quer_col[cur].S.S] = 1; cur++; } } cur = 0; for(auto x:row_map){ // cout << "row: " << x.F << " " << x.S << "\n"; while(cur < q and quer_row[cur].F < x.F) cur++; while(cur < q and quer_row[cur].F == x.F){ if(quer_row[cur].S.F <= x.S) b2[quer_row[cur].S.S] = 1; cur++; } } REP(i,q){ if(b1[i] and b2[i]) ans++; } return ans; }

Compilation message (stderr)

rect.cpp: In function 'long long int count_rectangles(std::vector<std::vector<int> >)':
rect.cpp:147:29: error: return-statement with no value, in function returning 'long long int' [-fpermissive]
  147 |     if(n > 700 and m > 700) return;
      |                             ^~~~~~