题解 1276: [NOIP2008]立体图

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

优质题解

[NOIP2008 普及组] 立体图

摘要:算法:(字符串处理,模拟,坐标变换) O(42nmh)首先将一个小正方体的投影画出来:char box[6][8] = { "..+---+", "./   /|", "+---+ |"……

1276: [NOIP2008]立体图

摘要:```cpp #include #include using namespace std; const int N=500; int n,m,h[N][N]; char box[6][8]……