当前位置: 代码迷 >> 综合 >> POJ 2409 Let it Bead (Polya) .
  详细解决方案

POJ 2409 Let it Bead (Polya) .

热度:68   发布时间:2023-09-23 08:18:29.0

题目地址:http://poj.org/problem?id=2409

旋转+翻转

裸的Polya

#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
typedef long long LL;
int gcd(int a,int b)
{if(b==0) return a;return gcd(b,a%b);
}
int euler_phi(int n)
{int res=1;for(int i=2;i*i<=n;i++)if(n%i==0) {         //说明i|nn/=i,res*=i-1;while(n%i==0) n/=i,res*=i;  //说明i^2|n}if(n>1) res*=n-1;return res;
}
LL polya(int m,int n)  //m color ,n number
{LL tot=0;  //方案数 for(int i=1;i*i<=n;i++)    //1~sqrt(n){if(n%i) continue;    //当i不是n的约数时就进入下一次循环 tot+=euler_phi(i)*pow(m,n/i);  //d=gcd(n,i) d为n的因数,且有euler_phi(n/i)个 if(i*i!=n) tot+=euler_phi(n/i)*pow(m,i); //当i*i==n时,不必算两次 }tot/=n;	if(n%2!=0) tot+=pow(m,(n+1)/2); //oddelse tot+=(pow(m,n/2)+pow(m,n/2+1))/2;return tot/2;
}
int main()
{int m,n;while(cin>>m>>n){if(m==0&&n==0) break;cout<<polya(m,n)<<endl;}return 0;
}