首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
UVA1030 Image Is Everything
】的更多相关文章
UVA1030 Image Is Everything
思路 如果两个面看到颜色不同,则这个正方体一定要被删掉 然后依次考虑每个面即可 注意坐标的映射 代码 #include <cstdio> #include <algorithm> #include <cstring> using namespace std; char see[20][20][20],mat[20][20][20],n; void get(int pos,int i,int j,int k,int &x,int &y,int &z…