Submission #143583

#TimeUsernameProblemLanguageResultExecution timeMemory
143583icypiggyRectangles (IOI19_rect)C++14
8 / 100
80 ms46556 KiB
#include <iostream> #include <vector> #include <set> #include <algorithm> #include <stack> #include <assert.h> using namespace std; const int n_max = 50; // make it not lag vector<pair<int,bool>> h_seg[n_max][n_max]; vector<pair<int,bool>> v_seg[n_max][n_max]; vector<pair<int,int>> h_map[n_max][n_max]; vector<pair<int,int>> v_map[n_max][n_max]; vector<pair<int,int>> v_map2[n_max]; pair<int,int> tmp[n_max][n_max]; // start and end void update_val(int left, int right, int row) { //cout << tmp[left][right].first << " " << tmp[left][right].second << " " << left << " " << right << " " << row << "\n"; if(tmp[left][right].second != row-1) { if(tmp[left][right].second!=-2) { for(int i=tmp[left][right].first; i<=tmp[left][right].second; i++) { h_map[i][left].push_back(make_pair(tmp[left][right].second, right)); //cout << "hmap update: " << i << " " << left << " " << tmp[left][right].second << " " << right << "\n"; } } tmp[left][right] = make_pair(row, row); } else { tmp[left][right].second++; } } void update_val2(int left, int right, int row) { //cout << tmp[left][right].first << " " << tmp[left][right].second << " " << left << " " << right << " " << row << "\n"; if(tmp[left][right].second != row-1) { if(tmp[left][right].second!=-2) { for(int i=tmp[left][right].first; i<=tmp[left][right].second; i++) { v_map[left][i].push_back(make_pair(right, tmp[left][right].second)); //cout << "vmap update: " << left << " " << i << " " << right << " " << tmp[left][right].second << "\n"; } } tmp[left][right] = make_pair(row, row); } else { tmp[left][right].second++; } } stack<int> s; void gen_h_seg(vector<int> &x, int r) { s.push(0); for(int i=1; i<x.size(); i++) { while(!s.empty() && x[s.top()]<x[i]) { if(s.top()!=i-1) { h_seg[r][s.top()+1].push_back(make_pair(i-1, true)); //cout << "attempt update: " << r << " " << s.top()+1 << " " << i-1 << "\n"; update_val(s.top()+1, i-1, r); } int t = x[s.top()]; while(!s.empty() && x[s.top()]==t) { s.pop(); } } if(!s.empty() && s.top()!=i-1) { h_seg[r][s.top()+1].push_back(make_pair(i-1, true)); update_val(s.top()+1, i-1, r); //cout << r << " " << s.top()+1 << " " << i-1 << "\n"; } s.push(i); } while(!s.empty()) s.pop(); } int fwbit[n_max][n_max]; int fwa[n_max][n_max]; int fw_pt = 0; struct fenwick { int *BIT; int *a; int n; fenwick(): n(n_max) {} void reset() { BIT = fwbit[fw_pt]; a = fwa[fw_pt]; fw_pt++; } void update(int x, int delta) { for(; x <= n; x += x&-x) BIT[x] += delta; } int query(int x) { int sum = 0; for(; x > 0; x -= x&-x) sum += BIT[x]; return sum; } int query(int x, int y) { return query(y)-query(x-1); } }; void gen_v_seg(vector<int> &x, int r) { s.push(0); for(int i=1; i<x.size(); i++) { while(!s.empty() && x[s.top()]<x[i]) { if(s.top()!=i-1) { v_seg[r][s.top()+1].push_back(make_pair(i-1, true)); //cout << r << " " << s.top()+1 << " " << i-1 << "\n"; update_val2(s.top()+1, i-1, r); } int t = x[s.top()]; while(!s.empty() && x[s.top()]==t) { s.pop(); } } if(!s.empty() && s.top()!=i-1) { v_seg[r][s.top()+1].push_back(make_pair(i-1, true)); //cout << r << " " << s.top()+1 << " " << i-1 << "\n"; update_val2(s.top()+1, i-1, r); } s.push(i); } while(!s.empty()) s.pop(); } long long count_rectangles(vector<vector<int>> a) { for(int i=0; i<n_max; i++) { for(int j=0; j<n_max; j++) { tmp[i][j] = make_pair(-2,-2); } } for(int i=0; i<a.size(); i++) { gen_h_seg(a[i],i); } for(int i=0; i<n_max; i++) { for(int j=0; j<=i; j++) { update_val(j,i,1e5); } } for(int i=0; i<n_max; i++) { for(int j=0; j<n_max; j++) { tmp[i][j] = make_pair(-2,-2); } } //cout << "\n"; for(int i=0; i<a[0].size(); i++) { vector<int> tmp; for(int j=0; j<a.size(); j++) { tmp.push_back(a[j][i]); } gen_v_seg(tmp, i); } for(int i=0; i<n_max; i++) { for(int j=0; j<=i; j++) { update_val2(j,i,1e5); } } /*for(int i=0; i<a.size(); i++) { for(int j=0; j<a[0].size(); j++) { sort(h_seg[i][j].begin(), h_seg[i][j].end()); sort(v_seg[j][i].begin(), v_seg[j][i].end()); } } fenwick f[a.size()]; for(int i=0; i<a.size(); i++) { f[i].reset(); } long long ans = 0; for(int j=0; j<a[0].size(); j++) { vector<pair<int,int>> updates; for(int i=0; i<a.size(); i++) { for(auto &p: h_seg[i][j]) { if(p.second) { int down = i; while(down+1!=a.size()) { auto it = lower_bound(h_seg[down+1][j].begin(), h_seg[down+1][j].end(), make_pair(p.first,true)); if(it==h_seg[down+1][j].end()) break; if(*it==make_pair(p.first, true)) { it->second = false; f[down].update(p.first, 1); updates.push_back(make_pair(down,p.first)); down++; } else { break; } } f[down].update(p.first, 1); updates.push_back(make_pair(down,p.first)); } } swap(i,j); for(auto &p: v_seg[i][j]) { if(p.second) { int down = i; while(down+1!=a[0].size()) { auto it = lower_bound(v_seg[down+1][j].begin(), v_seg[down+1][j].end(), make_pair(p.first,true)); if(it==v_seg[down+1][j].end()) break; if(*it==make_pair(p.first, true)) { it->second = false; down++; } else { break; } } v_map2[j].push_back(make_pair(p.first, down)); //cout << "i,j,p.first,down(v): " << i << " " << j << " " << p.first << " " << down << "\n"; } } swap(i,j); for(int a=0; a<v_map2[i].size(); a++) { while(a<v_map2[i].size() && v_map2[i][a].second<j) { swap(v_map2[i][a], v_map2[i][v_map2[i].size()-1]); v_map2[i].pop_back(); } } for(auto q: v_map2[i]) { int tmp = f[q.first].query(j,q.second); ans += tmp; } } for(auto p: updates) { f[p.first].update(p.second, -1); } }*/ long long ans = 0; for(int i=0; i<a.size(); i++) { for(int j=0; j<a[0].size(); j++) { for(auto &p: h_map[i][j]) { for(auto &q: v_map[i][j]) { if(p.first>=q.first && p.second<=q.second) { ans++; //cout << i << " " << j << " " << q.first << " " << p.second << "\n"; } } } } } return ans; }

Compilation message (stderr)

rect.cpp: In function 'void gen_h_seg(std::vector<int>&, int)':
rect.cpp:48:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i=1; i<x.size(); i++) {
                  ~^~~~~~~~~
rect.cpp: In function 'void gen_v_seg(std::vector<int>&, int)':
rect.cpp:101:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i=1; i<x.size(); i++) {
                  ~^~~~~~~~~
rect.cpp: In function 'long long int count_rectangles(std::vector<std::vector<int> >)':
rect.cpp:129:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i=0; i<a.size(); i++) {
                  ~^~~~~~~~~
rect.cpp:143:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i=0; i<a[0].size(); i++) {
                  ~^~~~~~~~~~~~
rect.cpp:145:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for(int j=0; j<a.size(); j++) {
                      ~^~~~~~~~~
rect.cpp:225:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i=0; i<a.size(); i++) {
                  ~^~~~~~~~~
rect.cpp:226:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for(int j=0; j<a[0].size(); 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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...