perfect-rectangle

https://leetcode.com/problems/perfect-rectangle/

// https://discuss.leetcode.com/topic/55944/o-n-log-n-sweep-line-solution


public class Solution {
    
    public class Column implements Comparable<Column> {
        int xs;
        int[] rect;
    
        public Column(int xs, int[] rect) {
            this.xs = xs;
            this.rect = rect;
        }
    
        public int compareTo(Column that) {
            if (this.xs != that.xs) {
                return this.xs - that.xs;
            }
            return this.rect[0] - that.rect[0];
        }
    
    }

    public boolean isRectangleCover(int[][] rectangles) {
        PriorityQueue<Column> pq = new PriorityQueue<Column>();
        int[] border = {Integer.MAX_VALUE, Integer.MIN_VALUE};
        for (int[] rect : rectangles) {
            Column c1 = new Column(rect[0], rect);
            Column c2 = new Column(rect[2], rect);
            pq.add(c1);
            pq.add(c2);
            if (rect[1] < border[0]) {
                border[0] = rect[1];
            }
            if (rect[3] > border[1]) {
                border[1] = rect[3];
            }
        }
        TreeSet<int[]> tset = new TreeSet<int[]> (new Comparator<int[]>(){
            public int compare(int []rect1, int[]rect2) {
                if (rect1[3] <= rect2[1]) {
                    return -1;
                }
                else if (rect1[1] >= rect2[3]) {
                    return 1;
                }
                else {
                    return 0;
                }
            }
        });
        int yRange = 0;
        while (!pq.isEmpty()) {
            int xs = pq.peek().xs;
            while (!pq.isEmpty() && pq.peek().xs == xs) {
                Column col = pq.poll();
                int[] rect = col.rect;
                if (xs == rect[2]) {
                    tset.remove(rect);
                    yRange -= rect[3] - rect[1];
                }
                else {
                    // xs == rect[0]
                    if (!tset.add(rect)) {
                        // intersect
                        return false;
                    }
                    yRange += rect[3] - rect[1];
                }
            }
            // if pq.isEmpty(), the right line, no need to check
            if (!pq.isEmpty() && yRange != border[1] - border[0]) {
                return false;
            }
        }
        return true;
    }
}

 

转载于:https://www.cnblogs.com/charlesblc/p/5823392.html

Implement the classic method for composing secret messages called a square code. Given an English text, output the encoded version of that text. First, the input is normalized: the spaces and punctuation are removed from the English text and the message is down-cased. Then, the normalized characters are broken into rows. These rows can be regarded as forming a rectangle when printed with intervening newlines. For example, the sentence ```text "If man was meant to stay on the ground, god would have given us roots." ``` is normalized to: ```text "ifmanwasmeanttostayonthegroundgodwouldhavegivenusroots" ``` The plaintext should be organized into a rectangle as square as possible. The size of the rectangle should be decided by the length of the message. If `c` is the number of columns and `r` is the number of rows, then for the rectangle `r` x `c` find the smallest possible integer `c` such that: - `r * c >= length of message`, - and `c >= r`, - and `c - r <= 1`. Our normalized text is 54 characters long, dictating a rectangle with `c = 8` and `r = 7`: ```text "ifmanwas" "meanttos" "tayonthe" "groundgo" "dwouldha" "vegivenu" "sroots " ``` The coded message is obtained by reading down the columns going left to right. The message above is coded as: ```text "imtgdvsfearwermayoogoanouuiontnnlvtwttddesaohghnsseoau" ``` Output the encoded text in chunks that fill perfect rectangles `(r X c)`, with `c` chunks of `r` length, separated by spaces. For phrases that are `n` characters short of the perfect rectangle, pad each of the last `n` chunks with a single trailing space. ```text "imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghn sseoau " ``` 上述为题目要求,请用C语言实现,函数声明如下: char *ciphertext(const char *input)
最新发布
08-13
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值