题目链接:
POJ 1286 Necklace of Beads
题意:
有3种颜色来涂n颗珠子的项链,考虑翻转和旋转,问不同的项链个数?
分析:
假设有 t 种颜色,
- 旋转
如果逆时针旋转 i 颗珠子的间距,则珠子
- 翻转
当 n 为奇数时,对称轴有
当 n 为偶数时,对称轴分两种。穿过珠子的对称轴有
根据 Polya 原理,当考虑旋转时的方案数为 an ,同时考虑旋转和翻转时的方案数为 a+b2n .
#include <cstdio>
#include <cstring>
#include <cmath>
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
typedef long long ll;
const int MAX_N = 25;ll quick_pow(ll a, ll b)
{ll res = 1, tmp = a;while(b) {if(b & 1) res *= tmp;tmp *= tmp;b >>= 1;}return res;
}int gcd(int a, int b)
{return b == 0 ? a : gcd(b, a % b);
}int main()
{int n;while(~scanf("%d", &n) && n != -1) {ll a = 0, b = 0;for(int i = 0; i < n; ++i ) {a += quick_pow(3, gcd(i, n));} if(n & 1) b = (ll)n * quick_pow(3, (n + 1) / 2);else b = (ll) n / 2 * (quick_pow(3, n / 2 + 1) + quick_pow(3, n / 2));if(n == 0) printf("0\n");else printf("%lld\n", (a + b) / 2 / n);}return 0;
}