Description
click me
默默复制了vjudge的链接(逃
Solution
可以XJB乱模拟算的题目为什么要用群论
题中有两种置换:
1. 旋转
对于跨度为
i
i
的旋转,则有个循环、每个循环有
n(i,n)
n
(
i
,
n
)
个元素(对称性)。
则旋转的不动点总数为:
A=∑i=0n−1t(i,n)
A
=
∑
i
=
0
n
−
1
t
(
i
,
n
)
2. 翻转
对于翻转,有两种情况
- 偶数
有两种对称轴:
穿过珠子的形成 n2−1 n 2 − 1 个长度为 2 2 的循环和个长度为 1 1 的循环。
不穿过珠子的形成个长度为 2 2 的循环。
两种对称轴各为条。
不动点总数为
B=n2(tn2+1+tn2)
B
=
n
2
(
t
n
2
+
1
+
t
n
2
)
- 奇数
有 n n 条对称轴,都形成了个长度为 2 2 的循环和个长度为 1 1 的循环。
不动点总数为
根据 Polya P o l y a 定理,项链总数为 An A n ,手镯总数为 A+B2n A + B 2 n 。
但是这样为什么不会漏算呢?
因为旋转加翻转不就是换个方向翻转么。。。
Source Code
/****************************
* Au: Hany01
* Prob: UVa 10294 Arif in Dhaka (First Love Part 2)
* Date: Feb 1st, 2018
* Email: hany01@foxmail.com
****************************/
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<int, int> PII;
typedef vector<int> VI;
#define rep(i , j) for (int i = 0 , i##_end_ = j; i < i##_end_ ; ++ i)
#define For(i , j , k) for (int i = (j) , i##_end_ = (k) ; i <= i##_end_ ; ++ i)
#define Fordown(i , j , k) for (int i = (j) , i##_end_ = (k) ; i >= i##_end_ ; -- i)
#define Set(a , b) memset(a , b , sizeof(a))
#define SZ(a) ((int)(a.size()))
#define ALL(a) a.begin(), a.end()
#define pb(a) push_back(a)
#define mp(a, b) make_pair(a, b)
#define INF (0x3f3f3f3f)
#define INF1 (2139062143)
#define Mod (1000000007)
#define y1 wozenmezhemecaia
#ifdef hany01
#define debug(...) fprintf(stderr , __VA_ARGS__)
#else
#define debug(...)
#endif
inline void File() {
#ifdef hany01
freopen("uva10294.in" , "r" , stdin);
freopen("uva10294.out" , "w" , stdout);
#endif
}
template<typename T> inline bool chkmax(T &a, T b) { return a < b ? a = b, 1 : 0; }
template<typename T> inline bool chkmin(T &a, T b) { return b < a ? a = b, 1 : 0; }
inline int gcd(int x, int y) { return x ? gcd(y % x, x) : y; }
const int maxn = 53;
LL Pow[maxn], Ans1, Ans2;
int n, t;
int main()
{
File();
Pow[0] = 1;
while (scanf("%d%d", &n, &t) != EOF) {
For(i, 1, n) Pow[i] = Pow[i - 1] * t;
Ans1 = 0;
For(i, 1, n) Ans1 += Pow[gcd(i, n)];
Ans2 = (n & 1) ? Pow[(n >> 1) + 1] * n : (Pow[n >> 1] + Pow[(n >> 1) + 1]) * (n >> 1);
cout << Ans1 / n << ' ' << (Ans1 + Ans2) / (n << 1) << endl;
}
return 0;
}