`

【水题】USACO Transformations

阅读更多
进入USACO要注册才能看题: http://train.usaco.org/usacogate

题目:【翻译版、是别处的网站】http://www.wzoi.org/usaco/13%5C408.asp

SAMPLE INPUT (file transform.in)
3
@-@
---
@@-
@-@
@--
--@
SAMPLE OUTPUT (file transform.out)
1


水题……未能一次A……而且一开始还理解错题意……悲催


/*
ID: 1006100071
PROG: transform
LANG: C++
*/
#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <set>
//#include <map>
#include <queue>
#include <utility>
#include <iomanip>
#include <stack>
#include <list>
#include <vector>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <ctime>
#include <ctype.h>
using namespace std;

bool match (char a[][15], char b[][15], int n)	//检查是否匹配
{
	int i;
	for (i = 0; i < n; i++)
		if (strcmp (a[i], b[i]))
			return false;
	return true;
}
void copy (char a[][15], char b[][15], int n)	//b复制到a
{
	int i;
	for (i = 0; i < n; i++)
		strcpy (a[i], b[i]);
}
void _90right (char a[][15], int n)	//对a进行90度右转
{
	int i, j;
	char b[15][15];
	for (i = 0; i < n; i++)
	{
		for (j = 0; j < n; j++)
		{
			b[j][n-1-i] = a[i][j];
			b[j][n] = 0;
		}
	}
	for (i = 0; i < n; i++)
		strcpy (a[i], b[i]);
}
void reflect (char a[][15], int n)	//对a进行镜面反射
{
	char b[15][15];
	int i, j;
	for (i = 0; i < n; i++)
	{
		for (j = n - 1; j >= 0; j--)
			b[i][n-1-j] = a[i][j];
		b[i][n] = 0;
	}
	for (i = 0; i < n; i++)
		strcpy (a[i], b[i]);
}
int main()
{
	/*freopen ("transform.in", "r", stdin);
	freopen ("transform.out", "w", stdout);*/
	char before[15][15], after[15][15], tp[15][15];
	int n, i;
	scanf ("%d", &n);
	for (i = 0; i < n; i++)
		scanf ("%s", before+i);
	for (i = 0; i < n; i++)
		scanf ("%s", after+i);
	//**************************右转3种情况:90 180 270
	copy (tp, before, n);
	for (i = 1; i <= 3; i++)
	{
		_90right (tp, n);
		if (match (tp, after, n))
		{
			printf ("%d\n", i);
			return 0;
		}
	}
	//**************************镜面翻转,也就是水平翻转
	copy (tp, before, n);
	reflect (tp, n);
	if (match (tp, after, n))
	{
		puts ("4");
		return 0;
	}
	//**************************镜面+旋转
	copy (tp, before, n);
	reflect (tp, n);
	for (i = 1; i <= 3; i++)
	{
		_90right (tp, n);
		if (match (tp, after, n))
		{
			puts ("5");
			return 0;
		}
	}
	//**************************本来就跟原来一样
	if (match (before, after, n))
	{
		puts ("6");
		return 0;
	}
	puts ("7");	//方法编号必须要从小到大一次判断,才能保证所得编号最小
	return 0;
}
0
1
分享到:
评论

相关推荐

    USACO题目Transformations(方块转换)及代码解析

    Transformations(方块转换)是一种USACO题目,旨在解决将一个N x N的黑白瓦片图案转换成新的正方形图案的问题。该问题需要使用七种不同的转换方法来将原始图案转换成新的图案,包括旋转90度、180度、270度、水平...

    USACO全部译题

    - “MilkingCows”和“Transformations”可能需要使用动态规划来解决。动态规划是一种算法策略,它将问题分解为重叠的子问题,并存储这些子问题的解,避免重复计算。 4. 图论(Graph Theory): - “MixingMilk”...

    USACO官网93题fps格式 OJ题库

    USACO 官网第一到 五章 练习题中文语言官方数据 fps格式支持导入所有OJ 1 [1.1] 你的飞碟在这儿 Your Ride Is Here 2 [1.1] 贪婪的送礼者Greedy Gift Givers 3 [1.1] 黑色星期五Friday the Thirteenth 4 [1.1] 坏掉...

    USACO总结

    此外,“Transformations”、“Name That Number”等题目进一步加深了对模拟算法的理解。 ### 四、Chapter3:Techniques more subtle 第三章深入探讨了更精细的技术,如“Mixing Milk”题目虽然可能通过模拟解决,...

    usaco题目的副本1

    在USACO(美国计算机奥林匹克)的题目中,我们经常遇到各种编程挑战,涉及不同的算法和数据结构。这里,我们将探讨几个与Python编程、哈希算法以及特定问题解决策略相关的关键知识点。 1. **哈希算法**:哈希算法是...

    USACO全部题目

    #### Transformations 此类题目通常涉及到字符串操作和转换,需要找到从一个字符串转换到另一个字符串所需的最小步骤数。这通常可以通过构建一个状态空间图并寻找最短路径来解决,类似于编辑距离问题。 #### Name ...

    第1章总结1

    接着,1.2节重点是完整搜索,如"Milking Cows"中运用离散化技术,"Transformations"和"Name That Number"通过枚举解决,而"Palindromic Squares"和"Dual Palindromes"进一步强化了枚举法的应用。 1.3节围绕贪心算法...

Global site tag (gtag.js) - Google Analytics