码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 2409 Let it Bead(Polya简单应用)

时间:2014-07-30 00:53:22      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   2014   

Let it Bead

 

大意:给你m种颜色,n个珠子串起来,旋转跟反转相同算相同,问有多少种不同的涂色组合方式。

 

思路:Polya的简单应用。

 

bubuko.com,布布扣
 1 /*************************************************************************
 2     > File Name: POJ2409.cpp
 3     > Author: GLSilence
 4     > Created Time: 2014年07月29日 星期二 22时56分58秒
 5  ************************************************************************/
 6 
 7 #include<stdio.h>
 8 #include<iostream>
 9 #include <math.h>
10 using namespace std;
11 
12 #define LL long long
13 
14 LL GCD(LL a, LL b){
15     return b ? GCD(b, a%b) : a;
16 }
17 
18 int n, m;
19 
20 int main()
21 {
22     while(~scanf("%d%d", &m, &n) && (n||m)){
23         LL ans = 0;
24         
25         for(int i = 1; i <= n; ++i){
26             ans += (LL)pow(m*1.0, GCD(n, i));
27         }
28 
29         if(n%2){
30             ans += n*(LL)pow(m*1.0, n/2+1);
31         }
32         else {
33             ans += n/2*(LL)pow(m*1.0, n/2);
34             ans += n/2*(LL)pow(m*1.0, n/2+1);
35         }
36 
37         printf("%lld\n", ans/2/n);
38 
39     }
40 
41     return 0;
42 }
POJ 2409

 

POJ 2409 Let it Bead(Polya简单应用),布布扣,bubuko.com

POJ 2409 Let it Bead(Polya简单应用)

标签:style   blog   http   color   os   io   for   2014   

原文地址:http://www.cnblogs.com/Silence-AC/p/3876758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!