zoukankan      html  css  js  c++  java
  • light oj 1008

    1008 - Fibsieve`s Fantabulous Birthday
    Time Limit: 0.5 second(s) Memory Limit: 32 MB

    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

    Output for Sample Input

    3

    8

    20

    25

    Case 1: 2 3

    Case 2: 5 4

    Case 3: 1 5

     题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1008

    算是道模拟题吧!找出数的排列顺序模拟下即可

    #include<stdio.h>
    #include<math.h>
    #include<string.h>
    #include<stdlib.h>
    #define LL long long 
    #define DD double
    #define MAX 20000000
    using namespace std;
    int main()
    {
    	int t,k;
    	DD n;
    	LL m,j,i;
    	scanf("%d",&t);
    	k=1;
    	while(t--)
    	{
    		scanf("%lf",&n);
    		DD ans=sqrt(n);
    		LL ant=(LL)(ans);
    		printf("Case %d: ",k++);
    		if(ans==ant)
    		{
    			if(ant%2==0)
    			printf("%lld 1
    ",ant);
    			else if(ant&1)
    			printf("1 %lld
    ",ant);
    		}
    		else
    		{
    			LL sum=pow(ant+1,2);
    			LL sun=pow(ant,2);
    			LL flag=(LL)(sum-n);
    			if(flag==ant)
    			    printf("%lld %lld
    ",ant+1,ant+1);
    			else if(flag<ant)
    			{
    				if((ant+1)%2==0)
    					printf("%lld %lld
    ",ant+1,flag+1);
    				else
    				    printf("%lld %lld
    ",flag+1,ant+1);
    			}
    			else
    			{
    				if((ant+1)%2==0)
    				    printf("%lld %lld
    ",(sum-sun)-flag,ant+1);
                    else
                        printf("%lld %lld
    ",ant+1,(sum-sun)-flag);
    			}
    		}
    	}
    	return 0;
    } 
    

      

  • 相关阅读:
    js数组中的reverse()方法
    JavaScript语言精粹知识点总结
    JavaScript高级程序设计学习笔记第十五章--使用Canvas绘图
    js中一些小知识点总结--持续更新
    怎么预览 GitHub 项目里的网页或 Demo?
    leetcode 6. ZigZag Conversion
    leetcode 67. Add Binary
    javascript:with的用法以及延长作用域链
    水平居中
    SetInterval与setTimeout
  • 原文地址:https://www.cnblogs.com/tonghao/p/5016191.html
Copyright © 2011-2022 走看看