HDU 1828 & & POJ 1177 Picture (선분 트 리 + 스캐닝 라인 + 이산 화)
이 문 제 는 주장 과 내 가 사용 하 는 방법 이 좀 번 거 로 울 수 있다.먼저 가로 선 을 구하 고 세로 선 을 구 하 는 것 이다.매번 총 구간 커버 길 이 를 구하 고 이번 총 구간 커버 와 지난번 총 구간 커버 길이 의 차 이 를 누적 하 는 절대 치 를 구한다.길이 가 바 뀌 어야 새로운 둘레 가 생기 기 때문이다.
이 따 한 번 만 스 캔 하 는 방법 을 다시 시도 해 보 겠 습 니 다.이 블 로 그 는 갱신 이 필요 하 다.
코드 는 다음 과 같 습 니 다:
#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm>
using namespace std;
#define lson l, mid, rt<<1
#define rson mid+1, r, rt<<1|1
int sum[50000], c[50000], cnt, a[6000], b[5000], d1[6000], d2[6000], lazy[50000];
struct node
{
int l, r, h, f;
} edge[100000];
void add(int l, int r, int h, int f)
{
edge[cnt].l=l;
edge[cnt].r=r;
edge[cnt].h=h;
edge[cnt++].f=f;
}
int cmp(node x, node y)
{
return x.h<y.h;
}
void PushUp(int rt, int l, int r)
{
if(lazy[rt])
sum[rt]=c[r+1]-c[l];
else if(l==r)
sum[rt]=0;
else
sum[rt]=sum[rt<<1]+sum[rt<<1|1];
}
void update(int ll, int rr, int x, int l, int r, int rt)
{
if(ll<=l&&rr>=r)
{
lazy[rt]+=x;
PushUp(rt,l,r);
return ;
}
int mid=l+r>>1;
if(ll<=mid) update(ll,rr,x,lson);
if(rr>mid) update(ll,rr,x,rson);
PushUp(rt,l,r);
}
int erfen(int x, int high)
{
int low=0, mid;
while(low<=high)
{
mid=low+high>>1;
if(c[mid]==x) return mid;
else if(c[mid]>x) high=mid-1;
else low=mid+1;
}
}
int main()
{
int n, i, j, last, ans, tmp, k;
while(scanf("%d",&n)!=EOF)
{
cnt=0;
k=0;
memset(sum,0,sizeof(sum));
memset(lazy,0,sizeof(lazy));
for(i=0; i<n; i++)
{
scanf("%d%d%d%d",&a[i],&d1[i],&b[i],&d2[i]);
c[k++]=a[i];
c[k++]=b[i];
add(a[i],b[i],d1[i],1);
add(a[i],b[i],d2[i],-1);
}
sort(edge,edge+2*n,cmp);
sort(c,c+2*n);
last=ans=0;
for(i=0; i<2*n; i++)
{
int l=erfen(edge[i].l,2*n-1);
int r=erfen(edge[i].r,2*n-1);
update(l,r-1,edge[i].f,0,2*n-1,1);
//printf("%d %d %d
",l,r,sum[1]);
ans+=abs(sum[1]-last);
last=sum[1];
}
cnt=0;
k=0;
memset(sum,0,sizeof(sum));
memset(lazy,0,sizeof(lazy));
for(i=0; i<n; i++)
{
c[k++]=d1[i];
c[k++]=d2[i];
add(d1[i],d2[i],a[i],1);
add(d1[i],d2[i],b[i],-1);
}
sort(edge,edge+2*n,cmp);
sort(c,c+2*n);
last=0;
for(i=0; i<2*n; i++)
{
int l=erfen(edge[i].l,2*n-1);
int r=erfen(edge[i].r,2*n-1);
update(l,r-1,edge[i].f,0,2*n-1,1);
ans+=abs(sum[1]-last);
last=sum[1];
}
printf("%d
",ans);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Linux Shell 프로 그래 밍 - 텍스트 처리 grep, sed사용자 가 지정 한 '모드' 에 따라 대상 텍스트 를 일치 하 게 검사 하고 일치 하 는 줄 을 인쇄 합 니 다. ##포함 되 지 않 음, 역방향 일치 \ ##키워드 앞 뒤 가 맞지 않 고 키워드 만 일치 합 니 다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.