AOJ 803.魔方

Posted

tags:

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

数学题

 

对于n阶魔方,如果n=1,那么就是1,否则ans=n3-(n-2)3=6n2-12n+8

 

 1 /*
 2 By:OhYee
 3 Github:OhYee
 4 Email:[email protected]
 5 */
 6 #include <cstdio>
 7 #include <algorithm>
 8 #include <cstring>
 9 #include <cmath>
10 #include <string>
11 #include <iostream>
12 #include <vector>
13 #include <list>
14 #include <stack>
15 using namespace std;
16  
17 #define REP(n) for(int o=0;o<n;o++)
18  
19  
20 int main() {
21     int n;
22     while(scanf("%d",&n) != EOF)
23         printf("%d\n",n==1?1:6*n*n-12*n+8);
24     return 0;
25 }

 

以上是关于AOJ 803.魔方的主要内容,如果未能解决你的问题,请参考以下文章

(BFS)aoj0558-Cheese

[转] AOJ 0525 Osenbei《挑战程序设计竞赛(第2版)》练习题答案

(DFSbitset)AOJ-0525 Osenbei

AOJ 0121 Seven Puzzle(反向BFS+map)

POJ 1979 POJ 3009 AOJ 0033 AOJ 0118 [搜索类题目][0033贪心模拟]

PHP 魔方加密二代 解密