zoukankan      html  css  js  c++  java
  • Lightoj 1008

    Description

    Fibsieve had a fantabulous (yes, it's an actual word) birthday party this year. He had so many gifts that he was actually thinking of not having a party next year.

    Among these gifts there was an N x N glass chessboard that had a light in each of its cells. When the board was turned on a distinct cell would light up every second, and then go dark.

    The cells would light up in the sequence shown in the diagram. Each cell is marked with the second in which it would light up.

    (The numbers in the grids stand for the time when the corresponding cell lights up)

    In the first second the light at cell (1, 1) would be on. And in the 5th second the cell (3, 1) would be on. Now, Fibsieve is trying to predict which cell will light up at a certain time (given in seconds). Assume that N is large enough.

    Input

    Input starts with an integer T (≤ 200), denoting the number of test cases.

    Each case will contain an integer S (1 ≤ S ≤ 1015) which stands for the time.

    Output

    For each case you have to print the case number and two numbers (x, y), the column and the row number.

    Sample Input

    3

    8

    20

    25

    Sample Output

    Case 1: 2 3

    Case 2: 5 4

    Case 3: 1 5

    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<queue>
    #include<algorithm>
    using namespace std;
    long long cha(long long d)//判断属于“哪一层” 
    {
    	long long x=sqrt(d);
    	if(x*x==d)
    	return x;
    	return x+1;
    }
    int main()
    {
    	int t;
    	int ans=0;
    	scanf("%d",&t);
    	while(t--)
    	{
    		ans++;
    		long long n;
    	  scanf("%lld",&n);
    		long long x,y;
            long long q=cha(n);
            long long dui=q*q-q+1;//以右上角的数为分界 
            if(q%2==1)
            {
               if(n>=dui)
    		   {
    		   	x=q-(n-dui);
    		   	y=q;
    		   }	
    		   else
    		   {
    		   	x=q;
    		   	y=q-(dui-n);
    		   }
    		}
    		else
    		{
    			if(n>dui)
    			{
    				x=q;
    				y=q-(n-dui);
    			}
    			else
    			{
    				y=q;
    				x=q-(dui-n);
    			}
    		}
    		printf("Case %d: %lld %lld
    ",ans,x,y);
    	}
    	return 0;
    }
    


    编程五分钟,调试两小时...
  • 相关阅读:
    [Algorithm] Delete a node from Binary Search Tree
    [Javascript] Check both prop exists and value is valid
    对象的多态性
    spring 定时任务(3)--配置多个定时任务
    能上QQ无法打开网页
    [置顶] Ajax核心--XMLHttpRequest对象
    linux内核--进程地址空间(一)
    [SQL]一个删选数据的例子,使用GROUP、DISTINCT
    [置顶] 腾讯2014软件开发笔试题目
    DBS小结
  • 原文地址:https://www.cnblogs.com/kingjordan/p/12027032.html
Copyright © 2011-2022 走看看