首页 > 数据库 > mysql教程 > zoj2027TravellingFee(最短路变形)

zoj2027TravellingFee(最短路变形)

WBOY
发布: 2016-06-07 16:02:50
原创
1155 人浏览过

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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板