首页 > 其他 > 详细

POJ 2183 Bovine Math Geniuses 找循环

时间:2014-02-21 05:14:05      阅读:379      评论:0      收藏:0      [点我收藏+]

Bovine Math Geniuses
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 2211   Accepted: 1364

Description

Farmer John loves to help the cows further their mathematical skills. He has promised them Hay-flavored ice cream if they can solve various mathematical problems. 

He said to Bessie, "Choose a six digit integer, and tell me what it is. Then extract the middle four digits. Square them and discard digits at the top until you have another number six digits or shorter. Tell me the result." 

Bessie, a mathematical genius in disguise, chose the six digit number 655554. "Moo: 6 5 5 5 5 4", she said. She then extracted the middle four digits: 5555 and squared them: 30858025. She kept only the bottom six digits: 858025. "Moo: 8 5 8 0 2 5", she replied to FJ. 

FJ nodded wisely, acknowledging Bessie‘s prowess in arithmetic. "Now keep doing that until you encounter a number that repeats a number already seen," he requested. 

Bessie decided she‘d better create a table to keep everything straight: 
              Middle    Middle   Shrunk to

       Num   4 digits   square   6 or fewer

     655554    5555    30858025    858025

     858025    5802    33663204    663204

     663204    6320    39942400    942400

     942400    4240    17977600    977600

     977600    7760    60217600    217600 <-+

     217600    1760     3097600     97600   |

      97600    9760    95257600    257600   |

     257600    5760    33177600    177600   |

     177600    7760    60217600    217600 --+

Bessie showed her table to FJ who smiled and produced a big dish of delicious hay ice cream. "That‘s right, Bessie," he praised. "The chain repeats in a loop of four numbers, of which the first encountered was 217600. The loop was detected after nine iterations." 

Help the other cows win ice cream treats. Given a six digit number, calculate the total number of iterations to detect a loop, the first looping number encountered, and also the length of the loop. 

FJ wondered if Bessie knew all the tricks. He had made a table to help her, but she never asked: 
              Middle    Middle   Shrunk to

       Num   4 digits   square   6 or fewer

     200023    0002       4        4

          4       0       0        0

          0       0       0        0         [a self-loop]

whose results would be: three iterations to detect a loop, looping on 0, and a length of loop equal to 1. 

Remember: Your program can use no more than 16MB of memory. 

Input

* Line 1: A single six digit integer that is the start of the sequence testing. 

Output

* Line 1: Three space-separated integers: the first number of a loop, the length of the loop, and the minimum number of iterations to detect the loop. 

Sample Input

655554

Sample Output

217600 4 9

Source


给你一个六位数字,让你取中间四位数字,把它平方后得到一个新数,然后取这个新数中间的四位数字。
一直循环,一直找到重复的六位数字为止,输出循环次数,循环长度和循环前执行的操作。
//4300K	16MS
#include<stdio.h>
#include<string.h>
int vis[1000007];
int main()
{
    int x,i;
    scanf("%d",&x);
    memset(vis,-1,sizeof(vis));
    for(i=1;;i++)
    {
        x=x/10%10000;
        x*=x;x%=1000000;
        if(vis[x]>=0)break;
        vis[x]=i;
    }
    printf("%d %d %d\n",x,i-vis[x],i);
}


POJ 2183 Bovine Math Geniuses 找循环

原文:http://blog.csdn.net/crescent__moon/article/details/19563283

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!