zoj2027TravellingFee(最短路变形)

WBOY
發布: 2016-06-07 16:02:50
原創
1123 人瀏覽過

All 6 sides of a cube are to becoated with paint. Each side is is coated uniformly with one color. When a selectionof n different colors of paint is available, how many different cubes can youmake? Note that any two cubes are onlyto be cal

All 6 sides of a cube are to becoated with paint. Each side is is coated uniformly with one color. When a selectionof n different colors of paint is available, how many different cubes can youmake?

Note that any two cubes are onlyto be called "different" if it is not possible to rotate the one intosuch a position that it appears with the same coloring as the other.

Input

Each line of the input filecontains a single integer n(0denoting the number of different colors. Input is terminated by a line wherethe value ofn=0. This line shouldnot be processed.

Output

For each line of input produce oneline of output. This line should contain the number of different cubes that canbe made by using the according number of colors.

SampleInput Outputfor Sample Input

1

2

0

1

10


Problem setter: EricSchmidt

Special Thanks: DerekKisman, EPS

题意:求用n中颜色涂立方体的不同种数,能旋转到的算一种

题意:和上一题UVA - 10601 Cubes (组合+置换) 的立方体旋转考虑的分类是一样的,不过这里我们考虑的是涂面的情况

1.不变置换(1)(2)(3)(4)(5)(6), 共1个;

2.沿对面中心轴旋转 90度, 270度 (1)(2345)(6), (1)(5432)(6) 同类共 6个;

3.沿对面中心轴旋转 180度 (1)(24)(35)(6), 同类共 3个;

4.沿对角线轴旋转 120度, 240度 (152)(346), (251)(643) 同类共 8个;

5.沿对边中点轴旋转 180度 (16)(25)(43) 同类共 6个;

<strong>[cpp]</strong> view plaincopy
登入後複製
在CODE上查看代码片派生到我的代码片
  1. #include <iostream></iostream>
    登入後複製
  2. #include <cstdio></cstdio>
    登入後複製
  3. #include <cstring></cstring>
    登入後複製
  4. #include <cmath></cmath>
    登入後複製
  5. #include <algorithm></algorithm>
    登入後複製
  6. typedef long long ll;
    登入後複製
  7. using namespace std;
    登入後複製
  8. ll n;
    登入後複製
  9. ll still() {
    登入後複製
  10. return n * n * n * n * n * n;
    登入後複製
  11. }
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
  12. ll point() {
    登入後複製
  13. return 4 * 2 * n * n;
    登入後複製
  14. }
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
  15. ll edge() {
    登入後複製
  16. return 6 * n * n * n;
    登入後複製
  17. }
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
  18. ll plane() {
    登入後複製
  19. return 3 * 2 * n * n * n + 3 * n * n * n * n;
    登入後複製
  20. }
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
  21. ll polya() {
    登入後複製
  22. ll ans = 0;
    登入後複製
  23. ans += still();
    登入後複製
  24. ans += point();
    登入後複製
  25. ans += edge();
    登入後複製
  26. ans += plane();
    登入後複製
  27. return ans / 24;
    登入後複製
  28. }
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
  29. int main() {
    登入後複製
  30. while (scanf("%lld", &n) != EOF && n) {
    登入後複製
  31. printf("%lld\n", polya());
    登入後複製
  32. }
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
  33. return 0;
    登入後複製
  34. }
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
    登入後複製
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!