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 학습자의 빠른 성장을 도와주세요!