codeforces 615E Hexagons (二分+找规律)

E. Hexagons
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Ayrat is looking for the perfect code. He decided to start his search from an infinite field tiled by hexagons. For convenience the coordinate system is introduced, take a look at the picture to see how the coordinates of hexagon are defined:

Ayrat is searching through the field. He started at point (0, 0) and is moving along the spiral (see second picture). Sometimes he forgets where he is now. Help Ayrat determine his location after n moves.

Input

The only line of the input contains integer n (0 ≤ n ≤ 1018) — the number of Ayrat's moves.

Output

Print two integers x and y — current coordinates of Ayrat coordinates.

Sample test(s)
input
3
output
-2 0
input
7
output
3 2

 题意:给你一个数n,是走的步数,问走了这么多步最后落点的坐标是多少;

 思路:可以看出这些轨迹形成了一层一层的六边形,间距为2,先二分找出给的n最后落在第几层六边形上,再根据层数找到6个顶点跟层数的关系,最后判断最终位置的坐标,注意,在x的非负半轴最后要减2,因为一开始判断的时候这些点都判断多了一层;

AC代码:

#include <bits/stdc++.h> using namespace std; long long ansx,ansy,pos,n; long long bisearch() { long long l=0,r=1e9,mid; while(l<=r) { mid=((l+r)>>1); if(3*mid*(mid+1)>n)r=mid-1; else l=mid+1; } return l; } int check(long long x,long long y) { if(x==0)ansx=2*pos-y,ansy=2*y; else if(x==1)ansx=pos-2*y,ansy=2*pos; else if(x==2)ansx=-pos-y,ansy=2*pos-2*y; else if(x==3)ansx=-2*pos+y,ansy=-2*y; else if(x==4)ansx=-pos+2*y,ansy=-2*pos; else if(x

转载于:https://www.cnblogs.com/zhangchengc919/p/5163982.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值