A11784 | Leaving the Bar
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
For a vector $\vec{v} = (x, y)$ , define $|v| = \sqrt{x^2 + y^2}$ .
Allen had a bit too much to drink at the bar, which is at the origin. There are $n$ vectors $\vec{v_1}, \vec{v_2}, \cdots, \vec{v_n}$ . Allen will make $n$ moves. As Allen's sense of direction is impaired, during the $i$ -th move he will either move in the direction $\vec{v_i}$ or $-\vec{v_i}$ . In other words, if his position is currently $p = (x, y)$ , he will either move to $p + \vec{v_i}$ or $p - \vec{v_i}$ .
Allen doesn't want to wander too far from home (which happens to also be the bar). You need to help him figure out a sequence of moves (a sequence of signs for the vectors) such that his final position $p$ satisfies $|p| \le 1.5 \cdot 10^6$ so that he can stay safe.
Allen had a bit too much to drink at the bar, which is at the origin. There are $n$ vectors $\vec{v_1}, \vec{v_2}, \cdots, \vec{v_n}$ . Allen will make $n$ moves. As Allen's sense of direction is impaired, during the $i$ -th move he will either move in the direction $\vec{v_i}$ or $-\vec{v_i}$ . In other words, if his position is currently $p = (x, y)$ , he will either move to $p + \vec{v_i}$ or $p - \vec{v_i}$ .
Allen doesn't want to wander too far from home (which happens to also be the bar). You need to help him figure out a sequence of moves (a sequence of signs for the vectors) such that his final position $p$ satisfies $|p| \le 1.5 \cdot 10^6$ so that he can stay safe.
输入格式
The first line contains a single integer $n$ ( $1 \le n \le 10^5$ ) — the number of moves.
Each of the following lines contains two space-separated integers $x_i$ and $y_i$ , meaning that $\vec{v_i} = (x_i, y_i)$ . We have that $|v_i| \le 10^6$ for all $i$ .
Each of the following lines contains two space-separated integers $x_i$ and $y_i$ , meaning that $\vec{v_i} = (x_i, y_i)$ . We have that $|v_i| \le 10^6$ for all $i$ .
输出格式
Output a single line containing $n$ integers $c_1, c_2, \cdots, c_n$ , each of which is either $1$ or $-1$ . Your solution is correct if the value of $p = \sum_{i = 1}^n c_i \vec{v_i}$ , satisfies $|p| \le 1.5 \cdot 10^6$ .
It can be shown that a solution always exists under the given constraints.
It can be shown that a solution always exists under the given constraints.
输入输出样例
输入 #1
3 999999 0 0 999999 999999 0
输出 #1
1 1 -1
输入 #2
1 -824590 246031
输出 #2
1
输入 #3
8 -67761 603277 640586 -396671 46147 -122580 569609 -2112 400 914208 131792 309779 -850150 -486293 5272 721899
输出 #3
1 1 1 1 1 1 1 -1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted