【发布时间】:2018-07-20 18:05:59
【问题描述】:
假设给定一个度向量,表示单位圆上的点。您如何正式检查以查看在一个具有直径的半圆中可以隔离的最小点数?我知道对于给定的一组数据点,可能有多个直径满足此属性。没关系。我只对可以隔离的最小点数感兴趣,而不是特别是直径。它还需要计算效率高,因此它适用于大量点。我根据@d.b 的建议编写了以下内容,但算法对于 tst4 失败。
在 R 中,
# Plots the points on a circle and attempts to find the minimum m (algorithm incorrect for tst )
min_dia <- function(degs, plot = T){
library(dplyr)
plot_circle <- function(x, y, r) {
angles <- seq(0, 2*pi,length.out = 360)
lines(r*cos(angles) + x, r*sin(angles) + y)
}
deg <- degs
plot_boo <- plot
# @d.b suggestion method for finding m
temp <- abs((deg - min(deg) + 180) %% 360 - 180)
m <- min(table(cut(temp, breaks = c(-180, 90, 180))))
if(plot_boo == T){
tm_deg <- c(0, 30, 45, 60, 90, 120, 135, 150, 180, 210, 225, 240, 270, 300, 315, 330)
tm_rad <- (tm_deg * pi) / 180
th <- (deg*pi)/180
r <- 1
x <- r*cos(th)
y <- r*sin(th)
windows.options(width = 600, height = 600)
plot(x, y, xlim = c(-1.1, 1.1), ylim = c(-1.1, 1.1), pch = 20, xlab = "", ylab = "", main = "Plot of Given Data Points by Degrees")
plot_circle(0, 0, 1)
points(0, 0)
text(r*cos(tm_rad), r*sin(tm_rad), labels = paste0(tm_deg), cex= 0.5, pos = 3)
}
return(m)
}
# Function to plot diameter by degrees
plot_dia <- function(deg){
deg1 <- deg
deg2 <- deg + 180
th1 <- (deg1*pi)/180
th2 <- (deg2*pi)/180
x1 <- cos(th1)
y1 <- sin(th1)
x2 <- cos(th2)
y2 <- sin(th2)
lines(c(x1, x2), c(y1, y2))
}
# Testing
tst1 <- c(15, 45, 20) # m = 0
tst2 <- c(15, 45, 200) # m = 1
tst3 <- c(15, 46, 114, 137, 165, 187, 195, 215, 271, 328) # m = 3
tst4 <- c(36, 304, 281, 254, 177, 59, 47, 158, 244, 149, 317, 235, 345, 209, 204,
156, 325, 95, 215, 267)
# Implementation
min_dia(tst1)
plot_dia(90) # eyeball and plot to check
min_dia(tst2)
plot_dia(190) # eyeball and plot to check
min_dia(tst3)
plot_dia(110) # eyeball and plot to check
min_dia(tst4)
plot_dia(150) # m is probably 2
对于我在代码中提供的度数为 15、45 和 225 的三个点,我可以用一条线分隔的最小点数(例如 m)为 1。
对于度数为 15、20、25 的点,答案显然是 0。
任何有关解决此最小化问题的有效算法的帮助或指导将不胜感激。
更新:
如果您要运行 R 代码,下面是该图以及一条线示例,该示例说明了您可以分离的最小点数,即 1。
更新:
我还更新了上面的代码,它允许绘制数据点,推测最小化 m 的直径,并按度数绘制直径。
【问题讨论】:
-
我无法想象问题...
-
如果您要运行该示例,我刚刚上传了一个情节。这有助于说明问题吗? @IgnacioVazquez-Abrams
-
所以你想让点大约在每一半的中心均匀分布?
-
不是特别的。我想通过将圆分成两半来找到我可以隔离一半的最小点数。这有助于澄清问题吗? @IgnacioVazquez-Abrams
-
您可以按角度对这些点进行排序,并为每个点找到另一半线切圆的索引/索引。对于蛮力方法,这给出了 O(N log N) 而不是 O(N^2)。不确定这在 R 中是否可行(至少以优雅的方式)。
标签: r math geometry graph-algorithm computational-geometry