# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
932594 |
2024-02-23T19:45:45 Z |
tminh_hk20 |
SIR (COI15_sir) |
C++14 |
|
330 ms |
24536 KB |
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define ii pair<int,int>
const int N=6e5+5;
struct vec{
int x, y;
}a[N+10], b[N+10];
vec operator - (vec a, vec b){
return {a.x-b.x,a.y-b.y};
}
bool operator < (vec a, vec b){
if (a.x==b.x) return a.y<b.y;
return a.x<b.x;
}
int cross(vec a, vec b){
return a.x*b.y-b.x*a.y;
}
int n, m, c, s[N+10];
vector<vec> v;
void convexhull(){
sort(b+1,b+m+1);
//upper
v.push_back(b[1]);
for (int i=2;i<=m;i++){
while(v.size()>=2 && cross(b[i]-v[v.size()-1],v[v.size()-2]-v[v.size()-1])>0) v.pop_back();
v.push_back(b[i]);
}
// lower
for (int i=m-1;i>=1;i--){
while(v.size()>=2 && cross(b[i]-v[v.size()-1],v[v.size()-2]-v[v.size()-1])>0) v.pop_back();
v.push_back(b[i]);
}
if (v.size()>1) v.pop_back();
}
int get(vec a, vec b, vec c){
if(a.x==b.x&&a.y==b.y) return 0;
return abs(a.x*(b.y-c.y)+b.x*(c.y-a.y)+c.x*(a.y-b.y));
}
vec luu[N];
signed main(){
cin>>n;
for(int i=1;i<=n;i++) cin>> a[i].x>>a[i].y;
reverse(a+1,a+n+1);
for (int i=1;i<=2*n;i++) a[n+i] =a[i]; a[3*n+1] = a[1];
for (int i=1;i<=3*n;i++) s[i] = s[i-1]+ cross(a[i],a[i+1]);
cin>>m;
for(int i=1;i<=m;i++) cin>>b[i].x>>b[i].y;
convexhull();
int j =0; c = v.size();
for (int i=0;i<c;i++){
if (cross(v[j]-a[0],v[i]-a[0])<=0){
j = i;
}
}
int res = 0;
int far = 2;
int tmp = 0;
for (int i=1;i<=n;i++){
while(!(cross(v[j]-a[i],v[(j+1)%c]-a[i])<=0)){
j++; j%=c;
}
while(cross(a[far+1]-a[i],v[j]-a[i])<0) tmp+=get(a[i],a[far],a[far+1]), far++;
res = max(res, tmp);
// cout <<i<<" "<<j<<" "<<far<<endl;
tmp-=get(a[i],a[i+1],a[far]);
}
cout <<res<<endl;
}
//>1 4
//>2 4
//>3 0
//>4 1
//>5 3
Compilation message
sir.cpp: In function 'int main()':
sir.cpp:57:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
57 | for (int i=1;i<=2*n;i++) a[n+i] =a[i]; a[3*n+1] = a[1];
| ^~~
sir.cpp:57:44: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
57 | for (int i=1;i<=2*n;i++) a[n+i] =a[i]; a[3*n+1] = a[1];
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
6488 KB |
Output is correct |
2 |
Incorrect |
1 ms |
6492 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
6488 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
330 ms |
24536 KB |
Output is correct |
2 |
Correct |
300 ms |
23348 KB |
Output is correct |
3 |
Correct |
269 ms |
23856 KB |
Output is correct |
4 |
Correct |
95 ms |
14676 KB |
Output is correct |
5 |
Incorrect |
253 ms |
21048 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |