Permutation
(Mylib/Math/permutation.cpp)
Operations
-
index_to_permutation(N, S)
- 長さ
S
の順列で辞書順でN
番目(0-indexed)のものを求める。
-
permutation_to_index(a[N])
- 順列
a
が長さN
の順列の中で辞書順で何番目(0-indexed)であるかを求める。
-
inverse_permutation(a)
Requirements
Notes
Problems
References
Verified with
Code
Back to top page