HDU 1828 & & POJ 1177 Picture (선분 트 리 + 스캐닝 라인 + 이산 화)

HDU 제목 주소: HDU 1828  POJ 제목 주소: POJ 1177
이 문 제 는 주장 과 내 가 사용 하 는 방법 이 좀 번 거 로 울 수 있다.먼저 가로 선 을 구하 고 세로 선 을 구 하 는 것 이다.매번 총 구간 커버 길 이 를 구하 고 이번 총 구간 커버 와 지난번 총 구간 커버 길이 의 차 이 를 누적 하 는 절대 치 를 구한다.길이 가 바 뀌 어야 새로운 둘레 가 생기 기 때문이다.
이 따 한 번 만 스 캔 하 는 방법 을 다시 시도 해 보 겠 습 니 다.이 블 로 그 는 갱신 이 필요 하 다.
코드 는 다음 과 같 습 니 다:
#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; }

좋은 웹페이지 즐겨찾기