Let it Bead

來源:互聯網
上載者:User
 
Let it BeadGrade: 10 / Discount: 0.8 Time Limit: 1000MS Memory Limit: 65536K

Description
"Let it Bead" company is located upstairs at 700 Cannery Row in Monterey, CA. As you can deduce from the company name, their business is beads. Their PR department found out that customers are interested in buying colored bracelets. However, over 90 percent of the target audience insists that the bracelets be unique. (Just imagine what happened if two women showed up at the same party wearing identical bracelets!) It's a good thing that bracelets can have different lengths and need not be made of beads of one color. Help the boss estimating maximum profit by calculating how many different bracelets can be produced.

A bracelet is a ring-like sequence of s beads each of which can have one of c distinct colors. The ring is closed, i.e. has no beginning or end, and has no direction. Assume an unlimited supply of beads of each color. For different values of s and c, calculate the number of different bracelets that can be made.

Input
Every line of the input file defines a test case and contains two integers: the number of available colors c followed by the length of the bracelets s. Input is terminated by c=s=0. Otherwise, both are positive, and, due to technical difficulties in the bracelet-fabrication-machine, c×s<=32, i.e. their product does not exceed 32.

Output
For each test case output on a single line the number of unique bracelets. The figure below shows the 8 different bracelets that can be made with 2 colors and 5 beads.

 

Sample Input

1 1 
2 1 
2 2 
5 1 
2 5 
2 6 
6 2 
0 0 

Sample Output

1 
2 
3 
5 
8 
13 
21 

Source
Ulm Local 2000

#include<iostream>#define MAXN 33using namespace std;int re[MAXN],s[MAXN],k,n,m;long long num[MAXN];void search(int a){    while(s[a]==0){        s[a]=1,k++;        search(re[a]);    }}long long solve(){    long long sum=1;    for(int i=1;i<=n;i++){        s[i]=0;        num[i]=1;    }    for(int j=1;j<=n;j++){        if(s[j]!=1){            k=0;            search(j);            num[k]*=m;        }    }    for(int p=1;p<=n;p++){        if(num[p]>1) sum*=num[p];    }    return sum;}int main(){    while(scanf("%d%d",&m,&n)!=EOF){        if(!n && !m) break;        int c=1,cc=n;        long long res=0;        for(int i=1;i<=n;i++){            int r=1;            for(int j=c;j<=c+n-1;j++){                int t=j;                if(t>n) t-=n;                re[r]=t,r++;            }            res+=solve();            c++;            r=1;            for(int k=cc;k>=cc-n+1;k--){                int tt=k;                if(tt<=0) tt+=n;                re[r]=tt;                r++;            }            res+=solve();            cc--;         }        cout<<res/(2*n)<<endl;    }    return 0;}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.