Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Problem proposal] All Farthest Neighbors in Convex Polygons #1187

Open
tatyam-prime opened this issue Jun 11, 2024 · 6 comments
Open

[Problem proposal] All Farthest Neighbors in Convex Polygons #1187

tatyam-prime opened this issue Jun 11, 2024 · 6 comments
Labels

Comments

@tatyam-prime
Copy link
Contributor

tatyam-prime commented Jun 11, 2024

Problem name: All Farthest Neighbors in Convex Polygons

Problem

$xy$ 平面に $N$ 個の点 $(x_0, y_0), \dots, (x_{N-1}, y_{N-1})$ があり, これらは反時計回りに (狭義) 凸多角形を成します.
$\text{ans}_i := {\arg\max}_{j=0}^{N-1}\sqrt{|x_j - x_i|^2 + |y_j - y_i|^2}$ と定義します.
$\text{ans}_0, \dots, \text{ans}_{N-1}$ を求めてください.

Constraint

  • $3 \le N \le 5 \times 10^5$ とか?

Solution / Reference

Input

N
x_0 y_0
: 
x_{N-1} y_{N-1}

Output

ans_0
: 
ans_{N-1}

Note / Disucussion

  • SMAWK algorithm がなさそうだったので
  • テストケース作成は難しそう
@maspypy
Copy link
Collaborator

maspypy commented Jun 11, 2024

ありがとうございます。

「テストケース作成は難しそう」というのはどういうことですか?
Library Checker はコンテストサイトではないので、恣意的な嘘解法が通ることはそんなに問題ではないです。
単にこの頂点数の凸多角形を作るのが大変ということですか?

@tatyam-prime
Copy link
Contributor Author

嘘解法を落とすのが大変だったという https://jag-icpc.org/?plugin=attach&refer=2023%2FPractice%2F%E5%A4%8F%E5%90%88%E5%AE%BF%2F%E8%AC%9B%E8%A9%95&openfile=G.pdf の記憶だったんですが,実際はこれより単純な問題なのでそんなに大変じゃなさそうという気になってきました

@tatyam-prime
Copy link
Contributor Author

複数ある場合, 最小の index にするのか, どれでも良いとするのかは議論点かな

@tatyam-prime
Copy link
Contributor Author

自然な実装として, SMAWK に $N \times 2N$ 行列を与えて, SMAWK は最小の index を返すというのが考えられますが, それは「頂点 $i$ から反時計回りに見て最初にくる最遠点」になりますね

@maspypy
Copy link
Collaborator

maspypy commented Jun 11, 2024

最小インデックスだと、反時計回り順で最寄りというわけではないのか。
最大距離のひとつ、としてしまうのがみんなにとって楽な気はします。

ちょうど最近
https://judge.yosupo.jp/problem/furthest_pair
が作られたので、gen は使いまわせるかもしれません。

@maspypy
Copy link
Collaborator

maspypy commented Jun 11, 2024

これで良さそうです。

@maspypy maspypy added the contributions-welcome 審査済み label Jun 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants