Tsinghua OJ:灯塔(LightHouse)

2023-10-12 09:50
文章标签 tsinghua oj lighthouse 灯塔

本文主要是介绍Tsinghua OJ:灯塔(LightHouse),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

灯塔(LightHouse)


Description

As shown in the following figure, If another lighthouse is in gray area, they can beacon each other.

For example, in following figure, (B, R) is a pair of lighthouse which can beacon each other, while (B, G), (R, G) are NOT.

Input

1st line: N

2nd ~ (N + 1)th line: each line is X Y, means a lighthouse is on the point (X, Y).

Output

How many pairs of lighthourses can beacon each other

( For every lighthouses, X coordinates won't be the same , Y coordinates won't be the same )

Example

Input

3
2 2
4 3
5 1

Output

1

Restrictions

For 90% test cases: 1 <= n <= 3 * 105

For 95% test cases: 1 <= n <= 106

For all test cases: 1 <= n <= 4 * 106

For every lighthouses, X coordinates won't be the same , Y coordinates won't be the same.

1 <= x, y <= 10^8

Time: 2 sec

Memory: 256 MB

Hints

The range of int is usually [-231, 231 - 1], it may be too small.

描述

海上有许多灯塔,为过路船只照明。

(图一)

如图一所示,每个灯塔都配有一盏探照灯,照亮其东北、西南两个对顶的直角区域。探照灯的功率之大,足以覆盖任何距离。灯塔本身是如此之小,可以假定它们不会彼此遮挡。

(图二)

若灯塔A、B均在对方的照亮范围内,则称它们能够照亮彼此。比如在图二的实例中,蓝、红灯塔可照亮彼此,蓝、绿灯塔则不是,红、绿灯塔也不是。

现在,对于任何一组给定的灯塔,请计算出其中有多少对灯塔能够照亮彼此。

输入

共n+1行。

第1行为1个整数n,表示灯塔的总数。

第2到n+1行每行包含2个整数x, y,分别表示各灯塔的横、纵坐标。

输出

1个整数,表示可照亮彼此的灯塔对的数量。

样例

见英文题面

限制

对于90%的测例:1 ≤ n ≤ 3×105

对于95%的测例:1 ≤ n ≤ 106

全部测例:1 ≤ n ≤ 4×106

灯塔的坐标x, y是整数,且不同灯塔的x, y坐标均互异

1 ≤ x, y ≤ 10^8

时间:2 sec

内存:256 MB

提示

注意机器中整型变量的范围,C/C++中的int类型通常被编译成32位整数,其范围为[-231, 231 - 1],不一定足够容纳本题的输出。



解题思路:

由照亮规则可以想到逆(顺)序规则(逆序)。

1、设B,R,G坐标分别为(x1,y1),(x2,y2),(x3,y3)。BR可以互相照亮,BG,RG互相不可照亮。

2 、BR构成顺序,BG,RG构成逆序。

3、归并排序是计算逆(顺)序的有效方法(可参考:逆序对),时间复杂度为O(nlogn)。


代码如下:

#include <stdio.h>
// #include <stdlib.h>
/*
const int SZ = 1 << 20;  //提升IO buff
struct fastio{
char inbuf[SZ];
char outbuf[SZ];
fastio(){
setvbuf(stdin, inbuf, _IOFBF, SZ);
setvbuf(stdout, outbuf, _IOFBF, SZ);
}
}io;
*/#define MAXN 4000010
struct Point // 坐标结构体
{long x;long y;
}points[MAXN];long count;
long src[MAXN];
long des[MAXN];// 快排,对x排序
void qsort(Point ps[], int l, int r)
{if (l < r){int i = l, j = r;Point tmp;tmp.x = ps[i].x;tmp.y = ps[i].y;int key = ps[i].x;while (i < j){while (i < j && key < ps[j].x) --j;			ps[i].x = ps[j].x;ps[i].y = ps[j].y;while (i < j && ps[i].x < key) ++i;ps[j].x = ps[i].x;ps[j].y = ps[i].y;}ps[i].x = tmp.x;ps[i].y = tmp.y;qsort(ps, l, i - 1);qsort(ps, i + 1, r);}
}
// 归并,对y进行“顺序对”统计
void merge(long *src, long *des, int start, int mid, int end)
{int i = start, j = mid + 1;int k = start;while (i != mid + 1 && j != end + 1){if (src[i] < src[j]){des[k++] = src[i++];count += end - j + 1;  // 统计“顺序”个数}else des[k++] = src[j++];}while (i != mid + 1) des[k++] = src[i++];while (j != end + 1) des[k++] = src[j++];for (i = start; i != end + 1; ++i)src[i] = des[i];
}void mergeSort(long *src, long *des, int start, int end)
{int mid;if (start < end){mid = (start + end) >> 1;mergeSort(src, des, start, mid);mergeSort(src, des, mid + 1, end);merge(src, des, start, mid, end);}
}
/*
int cmp(const void *a, const void *b)
{<span style="white-space:pre">	</span>// 定义排序规则,这里为从小到大return (*(Point *)a).x > (*(Point *)b).x ? 1 : -1;
}
*/
int main()
{int n;int i;scanf("%d", &n);for (i = 0; i < n; ++i)scanf("%ld %ld", &points[i].x, &points[i].y);//  qsort(points, n, sizeof(points[0]), cmp); // 用系统的快排,最后一个实例不能通过qsort(points, 0, n - 1); // 用自己写的快排,最后一个实例可通过for (i = 0; i < n; ++i)src[i] = points[i].y;count = 0;mergeSort(src, des, 0, n - 1);printf("%ld\n", count);return 0;
}



这篇关于Tsinghua OJ:灯塔(LightHouse)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/195031

相关文章

哈理工OJ 2179(深搜)

组合 Time Limit: 1000 MSMemory Limit: 32768 K Total Submit: 7(5 users)Total Accepted: 6(5 users)Rating: Special Judge: No Description 给出一个正整数N,从集合{1,2,3..N} 中找出所有大小为k的子集, 并按照字典序从小到大输出。 Input 第一行是一个整

每日OJ_牛客_求和(递归深搜)

目录 牛客_求和(递归深搜) 解析代码 牛客_求和(递归深搜) 求和_好未来笔试题_牛客网 解析代码         递归中每次累加一个新的数,如果累加和大于等于目标,结束递归。此时如果累加和正好等于目标,则打印组合。向上回退搜索其它组合。此题本身就是一个搜索的过程,找到所有的组合。 #include <iostream>#include <cmath>#in

OJ-0905

题目 示例1: 输入:10 10 56 34 99 1 87 8 99 3 255 6 99 5 255 4 99 7 255 2 99 9 255 213 4输出:99 示例2: 输入:10 10 255 34 0 1 255 8 0 3 255 6 0 5 255 4 0 7 255 2 0 9 255 213 5输出:255 import java.util.

每日OJ_牛客_Emacs计算器(逆波兰表达式)

目录 牛客_Emacs计算器(逆波兰表达式) 解析代码 牛客_Emacs计算器(逆波兰表达式) Emacs计算器__牛客网 解析代码 逆波兰表达式(后缀表达式)求值,需要借助栈,思路: 循环输入,获取逆波兰表达式,然后进行以下补助,直到测试完所有的测试用例: 遇到数字字符串,将该数字字符串转化为数字然后入栈。遇到操作符时,从栈顶取两个数字,然后进行该运算符所对应运算

西北工业大学oj题-兔子生崽

题目描述: 兔子生崽问题。假设一对小兔的成熟期是一个月,即一个月可长成成兔,每对成兔每个月可以生一对小兔,一对新生的小兔从第二个月起就开始生兔子,试问从一对兔子开始繁殖,一年以后可有多少对兔子? 这道题目一眼看过去就是典型的递归问题,代码如下 public class RabbitReproduction {public static void main(String[] args) {in

★ 算法OJ题 ★ 力扣209 - 长度最小的子数组

Ciallo~(∠・ω< )⌒☆ ~ 今天,简将和大家一起做一道滑动窗口算法题--长度最小的子数组~ 目录 一  题目 二  算法解析 解法⼀:暴力求解 解法二:滑动窗口 三  编写算法 一  题目 209. 长度最小的子数组 - 力扣(LeetCode) 二  算法解析 解法⼀:暴力求解 算法思路: 从前往后枚举数组中的任意⼀个元素,把它当成起始位置

OJ-0903

题目 示例1 输入:30 12 25 8 19输出:15 示例2 输入:10 12 25 8 19 8 6 4 17 19 20 30输出:-1 题解 import java.util.ArrayList;import java.util.List;import java.util.Scanner;public class Main {public static

【负载均衡式在线OJ】Compile_server 模块

文章目录 程序源码compile_server整体思路编译(compile.hpp)运行模块编译运行模块编译运行服务 程序源码 https://gitee.com/not-a-stupid-child/online-judge compile_server 整体思路 这个服务要对oj_server 发送过来的代码进行编译和运行,最后把结果返回给oj_server。 所以我

★ 算法OJ题 ★ 力扣18 - 四数之和

Ciallo~(∠・ω< )⌒☆ ~ 今天,爱丽速子将和大家一起做一道双指针算法题--四数之和~ 目录 一  题目 二  算法解析 三  编写算法  做此题前最好先看一下前两篇博客~: ★ 算法OJ题 ★ 力扣 LCR179 - 和为 s 的两个数字-CSDN博客 ★ 算法OJ题 ★ 力扣15 - 三数之和-CSDN博客 一  题目 18. 四数之和 - 力扣(Lee

oj生成数据

首先先写一个生成test.in的代码,利用随机数生成测试数据。 按照格式生成测试数就行   转载:https://blog.csdn.net/qq_29980371/article/details/72825443 #include <bits/stdc++.h>using namespace std;int main(){freopen("test.in","w",stdout);