UVA 10733 - The Colored Cubes(Ploya)

Posted yxysuanfa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA 10733 - The Colored Cubes(Ploya)相关的知识,希望对你有一定的参考价值。

UVA 10733 - The Colored Cubes

题目链接

题意:一个立方体。n种颜色,问能涂成多少不同立方体

思路:Ploya求解,正方体相应24种不同旋转一一计算出循环个数就可以。和 UVA 10601 - Cubes这题类似

代码:

#include <stdio.h>
#include <string.h>

unsigned long long n;

int main() {
	while (~scanf("%llu", &n) && n) {
		printf("%llu\n", (n * n * n * n * n * n + 12 * n * n * n + 3 * n * n * n * n + 8 * n * n) / 24);
 	}
	return 0;
}


以上是关于UVA 10733 - The Colored Cubes(Ploya)的主要内容,如果未能解决你的问题,请参考以下文章

[UVa-437] The Tower of Babylon

Uva10054 The Necklace

Uva 11077 Find the Permutation

Arrange the Numbers UVA

UVA 10474 Where is the Marble

UVA10917 Walk Through the Forest