A10137 | Nearest vectors
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given the set of vectors on the plane, each of them starting at the origin. Your task is to find a pair of vectors with the minimal non-oriented angle between them.
Non-oriented angle is non-negative value, minimal between clockwise and counterclockwise direction angles. Non-oriented angle is always between $0$ and $π$ . For example, opposite directions vectors have angle equals to $π$ .
Non-oriented angle is non-negative value, minimal between clockwise and counterclockwise direction angles. Non-oriented angle is always between $0$ and $π$ . For example, opposite directions vectors have angle equals to $π$ .
输入格式
First line of the input contains a single integer $n$ ( $2<=n<=100000$ ) — the number of vectors.
The $i$ -th of the following $n$ lines contains two integers $x_{i}$ and $y_{i}$ ( $|x|,|y|<=10000,x^{2}+y^{2}>0$ ) — the coordinates of the $i$ -th vector. Vectors are numbered from $1$ to $n$ in order of appearing in the input. It is guaranteed that no two vectors in the input share the same direction (but they still can have opposite directions).
The $i$ -th of the following $n$ lines contains two integers $x_{i}$ and $y_{i}$ ( $|x|,|y|<=10000,x^{2}+y^{2}>0$ ) — the coordinates of the $i$ -th vector. Vectors are numbered from $1$ to $n$ in order of appearing in the input. It is guaranteed that no two vectors in the input share the same direction (but they still can have opposite directions).
输出格式
Print two integer numbers $a$ and $b$ ( $a≠b$ ) — a pair of indices of vectors with the minimal non-oriented angle. You can print the numbers in any order. If there are many possible answers, print any.
输入输出样例
输入 #1
4 -1 0 0 -1 1 0 1 1
输出 #1
3 4
输入 #2
6 -1 0 0 -1 1 0 1 1 -4 -5 -4 -6
输出 #2
6 5
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted