The Cat in the Hat

来源:互联网 发布:yc网络语言是什么意思 编辑:程序博客网 时间:2024/05/21 09:57


 The Cat in the Hat 

Background

(An homage to Theodore Seuss Geisel)

The Cat in the Hat is a nasty creature,
But the striped hat he is wearing has a rather nifty feature.

With one flick of his wrist he pops his top off.

Do you know what's inside that Cat's hat?
A bunch of small cats, each with its own striped hat.

Each little cat does the same as line three,
All except the littlest ones, who just say ``Why me?''

Because the littlest cats have to clean all the grime,
And they're tired of doing it time after time!

The Problem

A clever cat walks into a messy room which he needs to clean. Instead of doing the work alone, it decides to have its helper cats do the work. It keeps its (smaller) helper cats inside its hat. Each helper cat also has helper cats in its own hat, and so on. Eventually, the cats reach a smallest size. These smallest cats have no additional cats in their hats. These unfortunate smallest cats have to do the cleaning.

The number of cats inside each (non-smallest) cat's hat is a constant, N. The height of these cats-in-a-hat istex2html_wrap_inline35 times the height of the cat whose hat they are in.

The smallest cats are of height one;
these are the cats that get the work done.
All heights are positive integers.

Given the height of the initial cat and the number of worker cats (of height one), find the number of cats that are not doing any work (cats of height greater than one) and also determine the sum of all the cats' heights (the height of a stack of all cats standing one on top of another).

The Input

The input consists of a sequence of cat-in-hat specifications. Each specification is a single line consisting of two positive integers, separated by white space. The first integer is the height of the initial cat, and the second integer is the number of worker cats.

A pair of 0's on a line indicates the end of input.

The Output

For each input line (cat-in-hat specification), print the number of cats that are not working, followed by a space, followed by the height of the stack of cats. There should be one output line for each input line other than the ``0 0'' that terminates input.

Sample Input

216 1255764801 16796160 0

Sample Output

31 671335923 30275911

已知原始猫高度H 与工作猫的个数M 设每次变N个猫 总共变了k次

那么 由题意得 N^k=M  (N+1)^k=H

so k= log M/  log N = log H / log (N+1)

so log M / log H  -  log N / log (N+1)=0
那么 从N=1开始 试验使上式左侧无限趋近与0



#include<stdio.h>#include<math.h>const int maxn=2000;int main(){    int H,M,N,high,sum;    while(scanf("%d%d",&H,&M)!=EOF&&H&&M)    {        N=1;        while(fabs((log(M)/log(H))-(log(N)/log(N+1)))>0.00001)            N++;        sum=0;        high=H;        int n=1;        while(H>1)        {            H/=(1+N);            n*=N;            sum+=n;            high+=H*n;        }        sum-=M-1;        printf("%d %d\n",sum,high);    }    return 0;}


0 0
原创粉丝点击