이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rect.h"
#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
#pragma GCC optimization ("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int mxN = 2501;
int n, m;
vector<vector<int>> arr;
vector<int> atrow[mxN][mxN];
vector<pair<int, int>> atcol[mxN];
vector<int> len[mxN];
vector<int> ch[mxN];
int BIT[mxN][mxN];
void upd(int num, int pos, int del) {
pos++;
while(pos<mxN) {
BIT[num][pos]+=del;
pos+=pos&-pos;
}
}
int sum(int num, int pos) {
int res = 0;
pos++;
while(pos) {
res+=BIT[num][pos];
pos-=pos&-pos;
}
return res;
}
ll count_rectangles(vector<vector<int>> A) {
arr = A;
n = A.size();
m = A[0].size();
for(int i = 1; i < m-1; ++i) {
vector<int> stk;
for(int j = 0; j < n; ++j) {
while(stk.size() && arr[stk.back()][i] < arr[j][i])stk.pop_back();
if(stk.size() && j - stk.back() > 1) {
atcol[i].emplace_back(stk.back(), j);
}
stk.push_back(j);
}
stk.clear();
for(int j = n-1; j >= 0; --j) {
while(stk.size() && arr[stk.back()][i] < arr[j][i])stk.pop_back();
if(stk.size() && stk.back() - j > 1) {
atcol[i].emplace_back(j, stk.back());
}
stk.push_back(j);
}
sort(atcol[i].begin(), atcol[i].end());
atcol[i].resize(unique(atcol[i].begin(), atcol[i].end()) - atcol[i].begin());
}
for(int i = 1; i < n-1; ++i) {
vector<int> stk;
vector<pair<int, int>> ex;
for(int j = 0; j < m; ++j) {
while(stk.size() && arr[i][stk.back()] < arr[i][j])stk.pop_back();
if(stk.size() && j - stk.back() > 1) {
ex.emplace_back(stk.back(), j);
}
stk.push_back(j);
}
stk.clear();
for(int j = m-1; j >= 0; --j) {
while(stk.size() && arr[i][stk.back()] < arr[i][j])stk.pop_back();
if(stk.size() && stk.back() - j > 1) {
ex.emplace_back(j, stk.back());
}
stk.push_back(j);
}
sort(ex.begin(), ex.end());
ex.resize(unique(ex.begin(), ex.end()) - ex.begin());
for(auto p: ex) {
atrow[p.first][p.second].push_back(i);
}
}
for(int j = m-1; j >= 1; --j) {
len[j].resize(atcol[j].size());
for(int i = 0; i < atcol[j].size(); ++i) {
int above = lower_bound(atcol[j+1].begin(), atcol[j+1].end(), atcol[j][i]) - atcol[j+1].begin();
if(above==atcol[j+1].size() || atcol[j+1][above]!=atcol[j][i]) {
len[j][i] = 1;
}else {
len[j][i] = len[j+1][above] + 1;
}
}
}
ll res = 0;
for(int i = 1; i < m-1; ++i) {
for(int j = i; j < m-1; ++j) {
ch[j].clear();
}
for(int j = 0; j < atcol[i].size(); ++j) {
upd(atcol[i][j].second, atcol[i][j].first, 1);
ch[i + len[i][j] - 1].push_back(j);
//cout<<atcol[i][j].first<<" "<<atcol[i][j].second<<" "<<len[i][j]<<"\n";
}
for(int j = i; j < m-1; ++j) {
int prv = 1;
for(int k = 0; k < atrow[i-1][j+1].size(); ++k) {
if(k && atrow[i-1][j+1][k-1]==atrow[i-1][j+1][k]-1)prv++;
else prv = 1;
//cout<<atrow[i-1][j+1][k]<<" "<<i<<" "<<j<<" "<<prv<<"\n";
//cout<<sum(atrow[i-1][j+1][k] - prv, atrow[i-1][j+1][k]+1)<<"\n";
int val = sum(atrow[i-1][j+1][k] + 1, atrow[i-1][j+1][k] + 1) -
(atrow[i-1][j+1][k]-prv == 0 ? 0 : sum(atrow[i-1][j+1][k] + 1, atrow[i-1][j+1][k] - prv - 1));
//cout<<val<<"\n";
res += val;
}
for(int k: ch[j]) {
upd(atcol[i][k].second, atcol[i][k].first, -1);
}
}
}
return res;
}
컴파일 시 표준 에러 (stderr) 메시지
rect.cpp:3: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
3 | #pragma GCC optimization ("O3")
|
rect.cpp:4: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
4 | #pragma GCC optimization ("unroll-loops")
|
rect.cpp: In function 'll count_rectangles(std::vector<std::vector<int> >)':
rect.cpp:83:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
83 | for(int i = 0; i < atcol[j].size(); ++i) {
| ~~^~~~~~~~~~~~~~~~~
rect.cpp:85:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
85 | if(above==atcol[j+1].size() || atcol[j+1][above]!=atcol[j][i]) {
| ~~~~~^~~~~~~~~~~~~~~~~~~
rect.cpp:97:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
97 | for(int j = 0; j < atcol[i].size(); ++j) {
| ~~^~~~~~~~~~~~~~~~~
rect.cpp:104:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
104 | for(int k = 0; k < atrow[i-1][j+1].size(); ++k) {
| ~~^~~~~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |