CF 171(div2)A

A. Point on Spiral
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Valera the horse lives on a plane. The Cartesian coordinate system is defined on this plane. Also an infinite spiral is painted on the plane. The spiral consists of segments:[(0, 0), (1, 0)], [(1, 0), (1, 1)], [(1, 1), ( - 1, 1)], [( - 1, 1), ( - 1,  - 1)], [( - 1,  - 1), (2,  - 1)],[(2,  - 1), (2, 2)] and so on. Thus, this infinite spiral passes through each integer point of the plane.

Valera the horse lives on the plane at coordinates (0, 0). He wants to walk along the spiral to point(x, y). Valera the horse has four legs, so he finds turning very difficult. Count how many times he will have to turn if he goes along a spiral from point(0, 0) to point (x, y).

Input

The first line contains two space-separated integers x andy (|x|, |y| ≤ 100).

Output

Print a single integer, showing how many times Valera has to turn.

Sample test(s)
Input
0 0
Output
0
Input
1 0
Output
0
Input
0 1
Output
2
Input
-1 -1
Output
 
直接模拟,一步步走过去,每一步走的是转角的点,分四种情况走,对于那些不处在转角的终点的处理方式,,就是分四种情况判断它是在哪一段上终止。
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#define LL long long
using namespace std;
const int maxn = 1000000 + 5;

int main(){
    int x,y;
    while(cin >> x >> y){
        if(x == 0 && y == 0) {
            cout << 0 << endl;
            continue;
        }
        int px = 0,py = 0;
        int ans = 0;
        while(1){
            if(px == x && py == y) break;
            else if(px == x && x > 0 && y < py && y > (-py+1)) break;
            else if(py == y && y > 0 && x > px && x < -px) break;
            else if(px == x && x < 0 && y > py && y < -py) break;
            else if(py == y && y < 0 && x < px && x > (-px+1)) break;
            if(px > 0 && py > 0){
                px = -px;
                ans++;
            }
            else if(px < 0 && py > 0){
                py = -py;
                ans++;
            }
            else if(px <= 0 && py <= 0){
                px = -px + 1;
                ans++;
            }
            else{
                py = -py + 1;
                ans++;
            }
        }
        cout << ans-1 << endl;
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值