A square pattern of size N x N (1 <= N <= 10) black and white square tiles is transformed into another square pattern. Write a program that will recognize the minimum transformation that has been applied to the original pattern given the following list of possible transformations:
- #1: 90 Degree Rotation: The pattern was rotated clockwise 90 degrees.
- #2: 180 Degree Rotation: The pattern was rotated clockwise 180 degrees.
- #3: 270 Degree Rotation: The pattern was rotated clockwise 270 degrees.
- #4: Reflection: The pattern was reflected horizontally (turned into a mirror image of itself by reflecting around a vertical line in the middle of the image).
- #5: Combination: The pattern was reflected horizontally and then subjected to one of the rotations (#1-#3).
- #6: No Change: The original pattern was not changed.
- #7: Invalid Transformation: The new pattern was not obtained by any of the above methods.
In the case that more than one transform could have been used, choose the one with the minimum number above.
PROGRAM NAME: transform
INPUT FORMAT
Line 1: | A single integer, N |
Line 2..N+1: | N lines of N characters (each either `@' or `-'); this is the square before transformation |
Line N+2..2*N+1: | N lines of N characters (each either `@' or `-'); this is the square after transformation |
SAMPLE INPUT (file transform.in)
3 @-@ --- @@- @-@ @-- --@
OUTPUT FORMAT
A single line containing the the number from 1 through 7 (described above) that categorizes the transformation required to change from the `before' representation to the `after' representation.
SAMPLE OUTPUT (file transform.out)
1
题意:
给出两个字符串组成的图形A与B,判断1. 90°对称;2. 180°对称;3. 270°对称;4. 垂直镜面对称;5. 垂直变换后,看是否满足1,2,3中的其中之一;6. 没有变换;7. 什么都不是 满足哪一条件,若满足多项则输出最小数。
思路:
枚举所以可能发生的情况 ,然后一一对应输出就可以了,5要注意一下。
Debug and test:
#include<stdio.h> #include<string.h> #include<stdlib.h> int main() { int N,i,j,sum; int way1=0,way2=0,way3=0,way4=0,way6=0,way5=0; int temp1=0,temp2=0,temp3=0,temp4=0,temp6=0; int t1=0,t2=0,t3=0; char a[15][15],b[15][15],c[15][15]; scanf("%d",&N); for(i=1;i<=N;i++) scanf("%s",a[i]); for(i=1;i<=N;i++) scanf("%s",b[i]); //这里打错为a // printf("\n"); // for(i=1;i<=N;i++) // printf("%s\n",a[i]); // printf("\n"); // for(i=1;i<=N;i++) // printf("%s\n",b[i]); sum=N*N; for(i=1;i<=N;i++) for(j=0;j<N;j++) { if(a[i][j]==b[j+1][N-i]) temp1++; if(a[i][j]==b[N+1-i][N-1-j]) temp2++; if(a[i][j]==b[N-j][i-1]) temp3++; if(a[i][j]==b[i][N-1-j]) temp4++; //-j不是I // printf("4=%d",temp4); // system("pause"); if(a[i][j]==b[i][j]) temp6++; } for(i=1;i<=N;i++) // { for(j=0;j<N;j++) // { c[i][j]=a[i][N-1-j]; // printf("%c",c[i][j]); // } // printf("\n"); // } for(i=1;i<=N;i++) for(j=0;j<N;j++) { if(c[i][j]==b[j+1][N-i]) t1++; if(c[i][j]==b[N+1-i][N-1-j]) t2++; if(c[i][j]==b[N-j][i-1]) t3++; } if(t1==sum||t2==sum||t3==sum) way5=1; // printf("temp1=%d\n",temp1); // printf("temp2=%d\n",temp2); // printf("temp3=%d\n",temp3); // printf("temp4=%d\n",temp4); // printf("temp6=%d\n",temp6); if(temp1==sum) way1=1; if(temp2==sum) way2=1; if(temp3==sum) way3=1; if(temp4==sum) way4=1; if(temp6==sum) way6=1; // printf("way1=%d\n",way1); if(way1) printf("1\n"); else if(way2) printf("2\n"); else if(way3) printf("3\n"); else if(way4) printf("4\n"); else if(way5) printf("5\n"); else if(way6) printf("6\n"); else if(!way1&&!way2&&!way3&&!way4&&!way6) printf("7\n"); }
AC:
/* TASK:transform LANG:C ID:sum-g1 */ #include<stdio.h> #include<string.h> #include<stdlib.h> int main() { FILE *fin =fopen("transform.in","r"); FILE *fout=fopen("transform.out","w"); int N,i,j,sum; int way1=0,way2=0,way3=0,way4=0,way6=0,way5=0; int temp1=0,temp2=0,temp3=0,temp4=0,temp6=0; int t1=0,t2=0,t3=0; char a[15][15],b[15][15],c[15][15]; fscanf(fin,"%d",&N); for(i=1;i<=N;i++) fscanf(fin,"%s",a[i]); for(i=1;i<=N;i++) fscanf(fin,"%s",b[i]); sum=N*N; for(i=1;i<=N;i++) for(j=0;j<N;j++) { if(a[i][j]==b[j+1][N-i]) temp1++; if(a[i][j]==b[N+1-i][N-1-j]) temp2++; if(a[i][j]==b[N-j][i-1]) temp3++; if(a[i][j]==b[i][N-1-j]) temp4++; if(a[i][j]==b[i][j]) temp6++; } for(i=1;i<=N;i++) for(j=0;j<N;j++) c[i][j]=a[i][N-1-j]; for(i=1;i<=N;i++) //5要分开来判断 for(j=0;j<N;j++) { if(c[i][j]==b[j+1][N-i]) t1++; if(c[i][j]==b[N+1-i][N-1-j]) t2++; if(c[i][j]==b[N-j][i-1]) t3++; } if(t1==sum||t2==sum||t3==sum) way5=1; if(temp1==sum) way1=1; if(temp2==sum) way2=1; if(temp3==sum) way3=1; if(temp4==sum) way4=1; if(temp6==sum) way6=1; if(way1) fprintf(fout,"1\n"); else if(way2) fprintf(fout,"2\n"); else if(way3) fprintf(fout,"3\n"); else if(way4) fprintf(fout,"4\n"); else if(way5) fprintf(fout,"5\n"); else if(way6) fprintf(fout,"6\n"); else if(!way1&&!way2&&!way3&&!way4&&!way6) fprintf(fout,"7\n"); exit(0); }
总结:
题目不难,但是越简单就越考细心,不能浮躁。一开始因为没读懂题意是水平镜面对称还是垂直镜面对称所以错了两次,5要注意是按4的方法变换后再判断是否满足1.2.3中的其中一项。
相关推荐
接着,1.2节重点是完整搜索,如"Milking Cows"中运用离散化技术,"Transformations"和"Name That Number"通过枚举解决,而"Palindromic Squares"和"Dual Palindromes"进一步强化了枚举法的应用。 1.3节围绕贪心算法...
同时,XPath(XML Path Language)和XSLT(Extensible Stylesheet Language Transformations)也可能被用于查询XML数据和转换XML格式。 总之,这个XML项目源代码提供了一个全面的学习平台,涵盖了从基本的XML语法到...
- **XSLT(Extensible Stylesheet Language Transformations)**:攻击者利用XSLT处理器执行恶意脚本,如Saxon。 - **XML加密**:通过XML加密属性来执行特定的操作或访问数据。 在构建SSRF攻击框架时,攻击者需要...
开发者可以枚举实体的面、循环和顶点,并且可以利用一系列可用的实体属性和方法来实现自己的功能。这涵盖了从基本的实体操作到复杂的数据提取,是三维开发不可或缺的部分。 知识点六:工作平面和矩阵的更多细节 在...
msploitego通过枚举和创建服务的特定实体来利用Metasploit数据库中收集的数据。 诸如samba,smtp,snmp,http之类的服务已进行了转换,以进一步枚举。 实体可以从Metasploit XML文件加载,也可以直接从Postgres msf...
例如,基本信息中的性别被定义为枚举类型,家庭信息中的家庭成员数量是可变的。 2. **数据库交互**: 数据库部分使用Microsoft Access来存储XML文件解析后的数据。通过Java JDBC(Java Database Connectivity)与...
此外,“Transformations”、“Name That Number”等题目进一步加深了对模拟算法的理解。 ### 四、Chapter3:Techniques more subtle 第三章深入探讨了更精细的技术,如“Mixing Milk”题目虽然可能通过模拟解决,...
XML Schema则更为强大,它支持更复杂的类型系统,如枚举、数组和复杂类型,以及命名空间,为大型、复杂的企业级应用提供了更好的支持。 在WEB报表的场景下,我们可以创建一个XML文件,其中包含报表的结构和数据。...
例如,在绘制文本时,需要涉及到字体的枚举和加载(Enumerating and Loading Fonts),文本的绘制(Drawing Text),以及字体颜色和样式的设置(Constructing, Setting, and Using Colors)。 图像处理方面,Quartz...
在iOS SDK中,我们可以使用`UIViewAnimationTransitionCurlUp`和`UIViewAnimationTransitionCurlDown`这两个枚举值来实现上卷和下卷的Curl效果,但这些内置的Curl动画相对简单,无法实现地图应用中那样更精细、更...
XPath提供了一个定位语法,使得XSLT(Extensible Stylesheet Language Transformations)和XPointer等技术能有效地对XML文档的不同部分进行操作。同时,XPath还包含了一系列内置函数,用于数字运算、布尔运算和字符...
- XSD支持复杂数据类型、枚举值、默认值和固定值等特性。 5. **XPath(XML Path Language)**: - XPath用于在XML文档中查找信息,选取节点。 - 它使用路径表达式来选取节点,如 `/root/child`。 - XPath还可以...
XSLT(XSL Transformations)是XSL的一部分,用于转换XML文档,例如添加属性可以使用`xsl:attribute`。XSLT还可以结合JavaScript进行更复杂的转换操作。XSL中包含了`xsl:element`、`xsl:copy`、`xsl:choose`等元素,...
2. **XML Schema的复杂性**:如何定义复杂的数据结构,包括枚举类型、限制和约束。 3. **XML的安全性**:如何避免XML注入攻击,以及在处理XML时的编码和验证策略。 4. **XML在数据库中的应用**:如XML存储过程,以及...
它提供了更复杂的类型系统,可以定义更复杂的数据结构,如数组、枚举和自定义数据类型。 4. **命名空间(Namespaces)**:在XML 4.0中,命名空间是避免元素和属性名冲突的关键机制。通过使用命名空间,来自不同来源...
XML Schema是另一种更现代和强大的XML验证工具,提供更复杂的元素和属性定义,如数据类型、默认值、枚举等。 七、XPath XPath是一种在XML文档中查找信息的语言,可以选取节点、表达式求值等,如选取所有`book`元素...
Extension可以给已有的类型添加方法、属性和下标,甚至可以为结构体和枚举添加计算属性和方法,这在我们实现动画效果时会非常有用。 接下来,我们将关注如何利用Core Animation框架来创建动画。Core Animation是iOS...
这类问题常常涉及数学推理和逻辑分析,可以通过枚举法、二分查找等算法来逐步缩小可能的数字范围,直至找到正确的答案。 #### Palindromic Squares 题目要求找出所有的回文平方数。此类问题可以通过遍历所有可能的...
XMLSpy提供了编辑、格式化和转换XML文档的功能,同时它还支持多种XML技术,例如DTD(Document Type Definition)、XSD(XML Schema Definition)和XSLT(Extensible Stylesheet Language Transformations)等。...
此外,Kotlin的 sealed class 可用于定义有限的枚举类型,非常适合表示事件和状态,这样可以确保所有可能的类型都被正确处理。 在实际应用中,"android-bloc"的使用流程大致如下: 1. **创建事件(Events)**: ...