Your new company is building a robot that can hold small lightweight objects. The robot will have the intelligence to determine if an object is light enough to hold. It does this by taking pictures of the object from the 6 cardinal directions, and then inferring an upper limit on the object's weight based on those images. You must write a program to do that for the robot.

You can assume that each object is formed from an N×N×N lattice of cubes, some of which may be missing. Each 1×1×1 cube weighs 1 gram, and each cube is painted a single solid color. The object is not necessarily connected.

Input

The input for this problem consists of several test cases representing different objects. Every case begins with a line containing  N , which is the size of the object (   1N10 ). The next  N  lines are the different N×N  views of the object, in the order front, left, back, right, top, bottom. Each view will be separated by a single space from the view that follows it. The bottom edge of the top view corresponds to the top edge of the front view. Similarly, the top edge of the bottom view corresponds to the bottom edge of the front view. In each view, colors are represented by single, unique capital letters, while a period ( . ) indicates that the object can be seen through at that location.

Input for the last test case is followed by a line consisting of the number 0.

Output

For each test case, print a line containing the maximum possible weight of the object, using the format shown below.

Sample Input

3
.R. YYR .Y. RYY .Y. .R.
GRB YGR BYG RBY GYB GRB
.R. YRR .Y. RRY .R. .Y.
2
ZZ ZZ ZZ ZZ ZZ ZZ
ZZ ZZ ZZ ZZ ZZ ZZ
0

Sample Output

Maximum weight: 11 gram(s)
Maximum weight: 8 gram(s)
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
const int MaxN=10+5;
char g1[MaxN][MaxN],g2[MaxN][MaxN],g3[MaxN][MaxN],g4[MaxN][MaxN],g5[MaxN][MaxN],g6[MaxN][MaxN];
int p1[MaxN][MaxN],p2[MaxN][MaxN],p3[MaxN][MaxN],p4[MaxN][MaxN],p5[MaxN][MaxN],p6[MaxN][MaxN];
int g[MaxN][MaxN][MaxN];
int n; void init();
void work();
bool update_front();
bool update_left();
bool update_back();
bool update_right();
bool update_top();
bool update_bottom(); int main()
{
for(;;)
{
scanf("%d",&n);
if(n==0) break;
init();
work();
}
return 0;
} void init()
{
for(int i=0;i<n;++i)
scanf("%s %s %s %s %s %s",g1[i],g2[i],g3[i],g4[i],g5[i],g6[i]);
} void work()
{
fill(p1[0],p1[n],0);fill(p2[0],p2[n],0);fill(p3[0],p3[n],0);
fill(p4[0],p4[n],0);fill(p5[0],p5[n],0);fill(p6[0],p6[n],0);
fill(g[0][0],g[n][0],-1);
for(;;)
{
bool quit=true;
if(update_front()) quit=false;
if(update_left()) quit=false;
if(update_back()) quit=false;
if(update_right()) quit=false;
if(update_top()) quit=false;
if(update_bottom()) quit=false;
if(quit) break;
}
int ans=n*n*n;
for(int i=0;i<n;++i)
for(int j=0;j<n;++j)
for(int k=0;k<n;++k)
if(g[i][j][k]==0) --ans;
printf("Maximum weight: %d gram(s)\n",ans);
} bool update_front()
{
bool upd=false;
for(int i=0;i<n;++i)
for(int j=0;j<n;++j)
{
int &t=p1[i][j];
char ch=g1[i][j];
if(t==n) continue;
int &val=g[n-t-1][j][i];
if(val==0)
{
++t;
upd=true;
}
else if(ch=='.')
{
val=0;
++t;
upd=true;
}
else if(val==-1)
{
val=ch-'A'+1;
upd=true;
}
else if(val!=ch-'A'+1)
{
val=0;
++t;
upd=true;
}
}
return upd;
} bool update_left()
{
bool upd=false;
for(int i=0;i<n;++i)
for(int j=0;j<n;++j)
{
int &t=p2[i][j];
char ch=g2[i][j];
if(t==n) continue;
int &val=g[j][t][i];
if(val==0)
{
++t;
upd=true;
}
else if(ch=='.')
{
val=0;
++t;
upd=true;
}
else if(val==-1)
{
val=ch-'A'+1;
upd=true;
}
else if(val!=ch-'A'+1)
{
val=0;
++t;
upd=true;
}
}
return upd;
} bool update_back()
{
bool upd=false;
for(int i=0;i<n;++i)
for(int j=0;j<n;++j)
{
int &t=p3[i][j];
char ch=g3[i][j];
if(t==n) continue;
int &val=g[t][n-j-1][i];
if(val==0)
{
++t;
upd=true;
}
else if(ch=='.')
{
val=0;
++t;
upd=true;
}
else if(val==-1)
{
val=ch-'A'+1;
upd=true;
}
else if(val!=ch-'A'+1)
{
val=0;
++t;
upd=true;
}
}
return upd;
} bool update_right()
{
bool upd=false;
for(int i=0;i<n;++i)
for(int j=0;j<n;++j)
{
int &t=p4[i][j];
char ch=g4[i][j];
if(t==n) continue;
int &val=g[n-j-1][n-t-1][i];
if(val==0)
{
++t;
upd=true;
}
else if(ch=='.')
{
val=0;
++t;
upd=true;
}
else if(val==-1)
{
val=ch-'A'+1;
upd=true;
}
else if(val!=ch-'A'+1)
{
val=0;
++t;
upd=true;
}
}
return upd;
} bool update_top()
{
bool upd=false;
for(int i=0;i<n;++i)
for(int j=0;j<n;++j)
{
int &t=p5[i][j];
char ch=g5[i][j];
if(t==n) continue;
int &val=g[i][j][t];
if(val==0)
{
++t;
upd=true;
}
else if(ch=='.')
{
val=0;
++t;
upd=true;
}
else if(val==-1)
{
val=ch-'A'+1;
upd=true;
}
else if(val!=ch-'A'+1)
{
val=0;
++t;
upd=true;
}
}
return upd;
} bool update_bottom()
{
bool upd=false;
for(int i=0;i<n;++i)
for(int j=0;j<n;++j)
{
int &t=p6[i][j];
char ch=g6[i][j];
if(t==n) continue;
int &val=g[n-i-1][j][n-t-1];
if(val==0)
{
++t;
upd=true;
}
else if(ch=='.')
{
val=0;
++t;
upd=true;
}
else if(val==-1)
{
val=ch-'A'+1;
upd=true;
}
else if(val!=ch-'A'+1)
{
val=0;
++t;
upd=true;
}
}
return upd;
}

1030 - Image Is Everything的更多相关文章

  1. BZOJ 1030: [JSOI2007]文本生成器 [AC自动机 DP]

    1030: [JSOI2007]文本生成器 Time Limit: 1 Sec  Memory Limit: 162 MBSubmit: 3953  Solved: 1614[Submit][Stat ...

  2. PAT A 1030. Travel Plan (30)【最短路径】

    https://www.patest.cn/contests/pat-a-practise/1030 找最短路,如果有多条找最小消耗的,相当于找两次最短路,可以直接dfs,数据小不会超时. #incl ...

  3. Light OJ 1030 - Discovering Gold(概率dp)

    题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1030 题目大意:有一个很长的洞穴, 可以看做是1-n的格子.你的起始位置在1的 ...

  4. Mysql: ERROR 1030 (HY000): Got error 28 from storage engine

    今天帮同事解决一个问题的时候,遇到了下面的异常: ERROR 1030 (HY000): Got error 28 from storage engine 我们的数据库是mysql,我们的sql语句是 ...

  5. loj 1030概率dp

    题目链接:http://lightoj.com/volume_showproblem.php?problem=1030 思路:一直以来对这种概率题都挺感冒的=.=......还是说一下思路吧,dp[i ...

  6. PAT乙级 1030. 完美数列(25)

    1030. 完美数列(25) 时间限制 300 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CAO, Peng 给定一个正整数数列,和正整数p,设这 ...

  7. mysql 1030 Got error 28 from storage engine

    mysql 1030 Got error 28 from storage engine 错误原因:磁盘临时空间不够. 解决办法:df -h 查看设备存储的使用情况 du -h --max-depth= ...

  8. hdu 1030 Delta-wave (C++, 0ms, explanatory comments.) 分类: hdoj 2015-06-15 12:21 45人阅读 评论(0) 收藏

    problem description http://acm.hdu.edu.cn/showproblem.php?pid=1030 #include <cstdio> #include ...

  9. 【BZOJ】【1030】【JSOI2007】文本生成器

    AC自动机/DP Orz ZYF 玛雅快要省选了,赶紧复(xue)习(xi)一下AC自动机…… 其实在AC自动机上DP并没有当初想的那么复杂……就是把DP的转移关系换成了AC自动机上的边而已(不过这题 ...

  10. PAT-乙级-1030. 完美数列(25)

    1030. 完美数列(25) 时间限制 300 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CAO, Peng 给定一个正整数数列,和正整数p,设这 ...

随机推荐

  1. Qt configure 参数不完全说明

    只需要加个 -fast参数就ok了.其他参数视自己情况而定,比如你不需要qt3支持可以添加-no-qt3support,或者不需要webkit插件 -no-webkit配置参数选项: 前面是*号的表示 ...

  2. Linux学习:curl 与 wget命令

    curl和wget命令都是Linux下的工具,可以用来下载文件. 一.wget 例1: wget http://www.minjieren.com/wordpress-3.1-zh_CN.zip 下载 ...

  3. python and 和 or

    在Python 中,and 和 or 执行布尔逻辑演算,如你所期待的一样.但是它们并不返回布尔值,而是返回它们实际进行比较的值之一. 例 4.15. and 介绍 >>> 'a' a ...

  4. javaku快捷键

    Eclipse 的编辑功能非常强大,掌握了 Eclipse 快捷键功能,能够大大提高开发效率.Eclipse 中有如下一些和编辑相关的快捷键. 1. [ALT+/] 此快捷键为用户编辑的好帮手,能为用 ...

  5. 64位系统/32位系统下/8位CPU的数据宽度

    不同的编译器根据不同的 64 位模型有所不同. 比如 Visual C++,从第一个支持 64 位的版本起,一直就是使用 LLP64 内存模型,也就是说,编译出的代码除了 long 和指针是 64 位 ...

  6. filter过滤器的使用

    从J2EE1.3开始,Servlet2.3规范中加入了对过滤器的支持.过滤器能够对目标资源的请求和响应进行截取.过滤器的工作方式分为四种,下面让我们分别来看看这四种过滤器的工作方式: 1.reques ...

  7. nginx负载 发向代理配置文件参考

    来自server+iis  linux可做参考 : #user nobody; worker_processes 8; #worker_cpu_affinity 00000001 00000010 0 ...

  8. HDU 5119 Happy Matt Friends(2014北京区域赛现场赛H题 裸背包DP)

    虽然是一道还是算简单的DP,甚至不用滚动数组也能AC,数据量不算很大. 对于N个数,每个数只存在两个状态,取 和 不取. 容易得出状态转移方程: dp[i][j] = dp[i - 1][j ^ a[ ...

  9. 【每日一摩斯】-Shared Pool优化和Library Cache Latch冲突优化 (1523934.1)-系列3

    减轻Shared Pool负载 Parse一次并执行多次        在OLTP类型的应用中,最好的方法是只让一个语句被解析一次,然后保持这个cursor的打开状态,在需要的时候重复执行它.这样做的 ...

  10. [置顶] hdu3018解题报告--也是白话几笔画学习总结

    1.题意 2.分析难点(结合图形) 1.首先说说题意吧...题意很简单...但是一开始很菜的我就很迷惑..在想啊...题目怎么就会有没有连接边的点呢....因为你每次给出一条边..就把 a,b连接啦. ...