博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SCU - 4117 - Discover
阅读量:5327 次
发布时间:2019-06-14

本文共 2238 字,大约阅读时间需要 7 分钟。

先上题目:

D - Discover
Time Limit:0MS     Memory Limit:0KB     64bit IO Format:%lld & %llu
Submit     

Description

Time Limit: 3000 MS    Memory Limit: 65536 K

Description

GLC has developed an algorithm to map each lattice point in the 2-d catesian coordinates to a nature number. For example:(0, 0) -> 0(1, 0) -> 1(1, 1) -> 2(0, 1) -> 3(-1, 1)-> 4...and so on. If we connect every two adjacent points by a segment, we get a spiral line which starts at (0, 0).Now, given a point on the plane, you are to find the nature number it mapped to.

Input

The first line of input is the number of test case.For each test case, thers is only one line contains two number x , y ( |x|, |y| <= 10,000 ).

Output

for each test case, output the answer in one line.

Sample Input

22 33 4

Sample Output

3157   题意:以(0,0)点为起点(零号点),作逆时针回旋矩阵,给出坐标,求出是第几个数。   直接模拟。根据分析,可以发现想一个方向前进的长度变化是每转两次方向加一。对于要判断目标点是不是在某一段上,我们需要判断这某一段的端点是不是都相等而且等于目标点的其中一个坐标,然后另一个坐标在端点对应坐标之间。不过注意端点的坐标大小不一定是从小到大排的,所以需要分情况讨论。然后统计一下中间的移动步数就可以了。 上代码:
1 #include 
2 #include
3 using namespace std; 4 5 int cy[]={
0,1,0,-1}; 6 int cx[]={
1,0,-1,0}; 7 int a,b; 8 int u; 9 inline bool check(int l,int m,int r){10 if(l<=m && m<=r){11 u=m-l;12 return 1;13 }14 if(r<=m && m<=l){15 u=l-m;16 return 1;17 }18 return 0;19 }20 21 int deal(){22 int c,i,x,y,x0,y0,ans;23 c=0,i=0;24 x=y=0;25 ans=0;26 while(1){27 i++;28 for(int j=0;j<2;j++){29 y0=y+cy[c]*i;30 x0=x+cx[c]*i;31 c=(c+1)%4;32 //printf("%d %d\n",x0,y0);33 if(x==x0 && a==x && check(y,b,y0)){34 ans+=u;35 return ans;36 }else if(y==y0 && y0==b && check(x,a,x0)){37 ans+=u;38 return ans;39 }40 ans+=i;41 y=y0;42 x=x0;43 }44 }45 return -1;46 }47 48 int main()49 {50 int t;51 //freopen("data.txt","r",stdin);52 scanf("%d",&t);53 while(t--){54 scanf("%d %d",&a,&b);55 printf("%d\n",deal());56 }57 return 0;58 }
4117

 

转载于:https://www.cnblogs.com/sineatos/p/3650577.html

你可能感兴趣的文章
面向对象的优点
查看>>
套接口和I/O通信
查看>>
阿里巴巴面试之利用两个int值实现读写锁
查看>>
浅谈性能测试
查看>>
Winform 菜单和工具栏控件
查看>>
CDH版本大数据集群下搭建的Hue详细启动步骤(图文详解)
查看>>
巧用Win+R
查看>>
浅析原生js模仿addclass和removeclass
查看>>
Python中的greenlet包实现并发编程的入门教程
查看>>
java中遍历属性字段及值(常见方法)
查看>>
深入理解jQuery框架-框架结构
查看>>
YUI3自动加载树实现
查看>>
python知识思维导图
查看>>
当心JavaScript奇葩的逗号表达式
查看>>
App Store最新审核指南(2015年3月更新版)
查看>>
织梦MIP文章内容页图片适配百度MIP规范
查看>>
点击复制插件clipboard.js
查看>>
[Kali_BT]通过低版本SerialPort蓝牙渗透功能手机
查看>>
C语言学习总结(三) 复杂类型
查看>>
HNOI2018
查看>>