2019牛客假日团队赛3 - City Horizon 【线段树+扫描线+数据离散化】矩形覆盖面积

链接:https://ac.nowcoder.com/acm/contest/945/F
来源:牛客网

题目描述

Farmer John has taken his cows on a trip to the city! As the sun sets, the cows gaze at the city horizon and observe the beautiful silhouettes formed by the rectangular buildings.
The entire horizon is represented by a number line with N (1 ≤ N ≤ 40,000) buildings. Building i’s silhouette has a base that spans locations Ai through Bi along the horizon (1 ≤ Ai < Bi ≤ 1,000,000,000) and has height Hi (1 ≤ Hi ≤ 1,000,000,000). Determine the area, in square units, of the aggregate silhouette formed by all N buildings.

输入描述:

Line 1: A single integer: N
Lines 2…N+1: Input line i+1 describes building i with three space-separated integers: Ai, Bi, and Hi
输出描述:
Line 1: The total area, in square units, of the silhouettes formed by all N buildings

Input Sample

4
2 5 1
9 10 4
6 8 2
4 6 3

Output Sample

16

说明
The first building overlaps with the fourth building for an area of 1 square unit, so the total area is just 31 + 14 + 22 + 23 - 1 = 16.

解题思路:

在这里插入图片描述
由于范围过大,先将数据离散化。然后对某一方向的边划线(这里选择高度方向),用线段树储存l离散化后的区间的宽度。
然后将横边从低到高排序, 依次遍历每一条边,将面积(通过线段树获取的宽度*遍历边和前一条边的高度差)累加即可得到答案

/*
 * Copyright (c) 2019 Ng Kimbing, HNU, All rights reserved. May not be used, modified, or copied without permission.
 * @Author: Ng Kimbing, HNU.
 * @LastModified:2019-06-25 T 15:07:41.265 +08:00
 */

package ACMProblems.QianDaoTi;

import java.util.Arrays;
import java.util.Comparator;
import static ACMProblems.ACMIO.*;

/*
 * 链接:https://ac.nowcoder.com/acm/contest/945/F
 * 来源:牛客网
 *
 * ## 题目描述 
 * Farmer John has taken his cows on a trip to the city! As the sun sets, the cows gaze at the city horizon and observe the beautiful silhouettes formed by the rectangular buildings.
 * The entire horizon is represented by a number line with N (1 ≤ N ≤ 40,000) buildings. Building i's silhouette has a base that spans locations Ai through Bi along the horizon (1 ≤ Ai < Bi ≤ 1,000,000,000) and has height Hi (1 ≤ Hi ≤ 1,000,000,000). Determine the area, in square units, of the aggregate silhouette formed by all N buildings.
 * ## 输入描述:
 * Line 1: A single integer: N
 * Lines 2..N+1: Input line i+1 describes building i with three space-separated integers: Ai, Bi, and Hi
 * 输出描述:
 * Line 1: The total area, in square units, of the silhouettes formed by all N buildings
 * ## Input Sample
 * >4
 * 2 5 1
 * 9 10 4
 * 6 8 2
 * 4 6 3
 * ## Output Sample
 * >16
 *
 * **说明**
 * The first building overlaps with the fourth building for an area of 1 square unit, so the total area is just 31 + 14 + 22 + 23 - 1 = 16.
 */
public class BuildingShadow2 {
    private static final int N = 40005;

    static class Edge {
        long left;
        long right;
        long height;
        int upOrDown;

        Edge() {}

        Edge(long left, long right, long height, int upOrDown) {
            this.left = left;
            this.right = right;
            this.height = height;
            this.upOrDown = upOrDown;
        }
    }

    /**
     * [x[left], x[right+1]]
     */
    static class Node {
        int left;
        int right;
        int overlapCompletely;
        long coverLength;

        Node() {}

        Node(int left, int right, int overlapCompletely, long coverLength) {
            this.left = left;
            this.right = right;
            this.overlapCompletely = overlapCompletely;
            this.coverLength = coverLength;
        }
    }

    private static Edge[] edges = new Edge[N << 1];
    private static Node[] nodes = new Node[N * 8];
    private static long[] x = new long[2 * N];

    private static void build(int i, int l, int r) {
        nodes[i] = new Node(l, r, 0, 0);
        if (l == r)
            return;
        int mid = (nodes[i].left + nodes[i].right) >> 1;
        build(i << 1, l, mid);
        build(i << 1 | 1, mid + 1, r);
    }

    private static void pushUp(int i) {
        if (nodes[i].overlapCompletely != 0) {
            nodes[i].coverLength = x[nodes[i].right + 1] - x[nodes[i].left];
        }
        /*
         * remove edge
         * if is leaf
         */
        else if (nodes[i].left == nodes[i].right)
            nodes[i].coverLength = 0;
        // remove edge, if is not leaf
        else
            nodes[i].coverLength = nodes[i << 1].coverLength + nodes[i << 1 | 1].coverLength;
    }

    private static void update(int i, int targetL, int targetR, int upOrDown) {
        if (nodes[i].left == targetL && nodes[i].right == targetR) {
            nodes[i].overlapCompletely += upOrDown;
            pushUp(i);
            return;
        }
        int mid = (nodes[i].left + nodes[i].right) >> 1;
        if (targetR <= mid)
            update(i << 1, targetL, targetR, upOrDown);
        else if (targetL > mid)
            update(i << 1 | 1, targetL, targetR, upOrDown);
        else {
            update(i << 1, targetL, mid, upOrDown);
            update(i << 1 | 1, mid + 1, targetR, upOrDown);
        }
        pushUp(i);
    }

    private static int lowerBound(long[] array, int size, long key) {
        int first = 0, middle;
        int half, len;
        len = size;
        while (len > 0) {
            half = len >> 1;
            middle = first + half;
            if (array[middle] < key) {
                first = middle + 1;
                len = len - half - 1;
            } else
                len = half;
        }
        return first;
    }

    public static void main(String[] args) throws Exception {
        setStream(System.in);
        int total = 0;
        int n = nextInt();
        for (int i = 0; i < n; ++i) {
            long a, b, h;
            a = nextLong();
            b = nextLong();
            h = nextLong();
            edges[total] = new Edge(a, b, 0, 1);
            edges[total + 1] = new Edge(a, b, h, -1);
            x[total] = a;
            x[total + 1] = b;
            total += 2;
        }
        edges[total] = new Edge();
        Arrays.sort(edges, 0, total, Comparator.comparingLong(o -> o.height));
        Arrays.sort(x, 0, total);
        // 去重复
        int k = 1;
        for (int i = 1; i < total; ++i)
            if (x[i] != x[i - 1])
                x[k++] = x[i];
        build(1, 0, k - 2);
        long ans = 0;
        // For each edge
        for (int i = 0; i < total; ++i) {
            // l, r are the index of the current edge.
            int l = lowerBound(x, k, edges[i].left);
            int r = lowerBound(x, k, edges[i].right) - 1;
            update(1, l, r, edges[i].upOrDown);
            ans += (edges[i + 1].height - edges[i].height) * nodes[1].coverLength;
        }
        System.out.println(ans);
    }
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值