이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define ff first
#define ss second
#define pb push_back
#define SZ(x) ((int)(x).size())
#define all(x) x.begin(), x.end()
#define debug(x) cout << #x << ": " << x << " "
#define nl cout << "\n"
#define rep(i, a, b) for(int i = (a); i < (b); i++)
#define per(i, a, b) for(int i = (a); i >= (b); i--)
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
long long count_rectangles(vector<vector<int>> a){
int N = SZ(a), M = SZ(a[0]);
vector<int> rt[N][M], dw[N][M];
rep(i, 0, N){
vector<int> st;
per(j, M - 1, 0){
while(!st.empty() && a[i][j] > a[i][st.back()]){
if(j + 1 < st.back()) rt[i][j].pb(st.back());
st.pop_back();
}
if(!st.empty() && j + 1 < st.back()) rt[i][j].pb(st.back());
st.pb(j);
}
}
rep(j, 0, M){
vector<int> st;
per(i, N - 1, 0){
while(!st.empty() && a[i][j] > a[st.back()][j]){
if(i + 1 < st.back()) dw[i][j].pb(st.back());
st.pop_back();
}
if(!st.empty() && i + 1 < st.back()) dw[i][j].pb(st.back());
st.pb(i);
}
}
auto add = [&](int i, int j, int j2){
};
ll ans = 0;
rep(i, 1, N - 1){
rep(j, 0, M){
int curj = j + 1;
set<int> st1;
for(int i2 : dw[i][j]){
st1.insert(i2);
}
for(int j2 : rt[i][j]){
while(curj < j2){
set<int> st2;
for(int i2 : dw[i][curj]){
if(!st1.count(i2)) continue;
st2.insert(i2);
}
st1 = st2;
if(min(a[i - 1][curj], a[i + 1][curj]) > a[i][curj]) curj++;
else{
curj = -1; break;
}
}
if(curj == -1) break;
ans += 1;
ans += SZ(st1);
}
}
}
rep(j, 1, M - 1){
rep(i, 0, N){
int curi = i + 1;
for(int i2 : dw[i][j]){
while(curi < i2){
if(min(a[curi][j - 1], a[curi][j + 1]) > a[curi][j]) curi++;
else{
curi = -1; break;
}
}
if(curi == -1) break;
if(curi - i > 2){
ans += 1;
}
}
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
rect.cpp: In function 'long long int count_rectangles(std::vector<std::vector<int> >)':
rect.cpp:42:10: warning: variable 'add' set but not used [-Wunused-but-set-variable]
42 | auto add = [&](int i, int j, int j2){
| ^~~
# | 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... |