This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define fr first
#define sc second
#define clr(a, x) memset(a, x, sizeof(a))
#define dbg(x) cout<<"("<<#x<<"): "<<x<<endl;
#define printvector(arr) for (auto it = arr.begin(); it != arr.end(); ++it) cout<<*it<<" "; cout<<endl;
#define all(v) v.begin(), v.end()
#define lcm(a, b) (a * b)/__gcd(a, b)
#define printvecpairs(vec) for(auto it: vec) cout<<it.fr<<' '<<it.sc<<endl;
#define endl '\n'
#define float long double
const int MOD = 1e9 + 7;
const int INF = 2e15;
const int MAXN = 1e5 + 5;
long long int count_rectangles(vector<vector<int>> a) {
int n = a[0].size();
bool poss[n+2];
clr(poss, 0);
for(int i= 1;i<n-1;i++){
if(a[1][i] < a[0][i] && a[1][i] < a[2][i]){
poss[i] = 1;
}
}
int ans= 0;
for(int i= 0;i<n;i++){
int mx = 0;
int sum = 0;
for(int j=i+2;j<n;j++){
mx = max(mx, a[1][j-1]);
sum += poss[j-1];
int len = j-i-1;
if(sum == len && mx < min(a[1][i], a[1][j])){
ans++;
}
}
}
return ans;
}
/*
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
#ifdef LOCAL
freopen("input.txt", "r", stdin);
#endif
int n, m;
cin>>n>>m;
vector<vector<int>> vec;
for(int i= 0;i<n;i++){
vector<int> tmp;
for(int j= 0;j<m;j++){
int x;
cin>>x;
tmp.pb(x);
}
vec.pb(tmp);
}
cout<<count_rectangles(vec)<<endl;
return 0;
}
*/
Compilation message (stderr)
rect.cpp:17:17: warning: overflow in conversion from 'double' to 'int' changes value from '2.0e+15' to '2147483647' [-Woverflow]
17 | const int INF = 2e15;
| ^~~~
# | 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... |