USACO Magic Squares 解题报告

2024-03-29 08:32

本文主要是介绍USACO Magic Squares 解题报告,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在发现8!=40320之后,我发现空间不是影响因素了。只要不重复运算,时间和空间都是足够的。

值得借鉴的地方:

1.对于转换的处理:

/* the set of transformations, in order */

static int tforms[3][8] = { {8, 7, 6, 5, 4, 3, 2, 1}, {4, 1, 2, 3, 6, 7, 8, 5}, 

{1, 7, 2, 4, 5, 3, 6, 8} };

这里是另外一种思路,处理起来相对更简单些。思路是直接将转化理解为对不同拷贝位置(初始位置转换后的位置)的映射。比如第一个转化里面第0为应该拷贝第7位(8-1)。第一个转化其实就是这一个数组,即拷贝位置的映射。

2.康拓展开

康拓展开是个好定理:作用是求一个排列如45213在这个5个数的全排列中的序列。可以直接移步这里:http://blog.csdn.net/fairyroad/article/details/7555773

代码写得很好。

/*
ID: thestor1
LANG: C++
TASK: msquare
*/
#include <iostream>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <vector>
#include <cassert>
#include <string>
#include <algorithm>
#include <stack>
#include <set>using namespace std;const int size = 8;
const int MAX = 40320;//8! = 40320
struct Square{int h;int square[size];char op;int prev;Square(){h = -1;}int hash(){if(h > 0){return h;}int h = 0;for(int i = 0; i < size; ++i){h = (h << 3) + square[i];}return h;}
};Square squares[MAX];bool equal(Square &s1, Square &s2)
{return s1.hash() == s2.hash();
}bool equal(int *s1, int *s2)
{for(int i = 0; i < size; ++i){if(s1[i] != s2[i]){return false;}}return true;
}void copy(int *s, int *d)
{for(int i = 0; i < size; ++i){d[i] = s[i];}
}void A(int *square)
{for(int i = 0; i <= 3; ++i){int tmp = square[i];square[i] = square[7 - i];square[7 - i] = tmp;}
}void B(int *square)
{int tmp = square[3];for(int i = 3; i >= 1; --i){square[i] = square[i - 1];}square[0] = tmp;tmp = square[4];for(int i = 4; i <= 6; ++i){square[i] = square[i + 1];}square[7] = tmp;
}void C(int *square)
{int tmp = square[1];square[1] = square[6];square[6] = square[5];square[5] = square[2];square[2] = tmp;
}int main()
{FILE *fin  = fopen ("msquare.in", "r");FILE *fout = fopen ("msquare.out", "w");//freopen("log.txt", "w", stdout);Square targetSq;//int target[size];for(int i = 0; i < size; ++i){fscanf(fin, "%d", &targetSq.square[i]);}set<int> sqs;int top = 0;for(int i = 0; i < size; ++i){squares[top].square[i] = i + 1;}sqs.insert(squares[top].hash());top++;int final = -1;for(int i = 0; i < top; ++i){//fprintf(stdout, "i: %d, top: %d\n", i, top);Square sq = squares[i];if(equal(sq, targetSq)){final = i;break;}copy(sq.square, squares[top].square);A(squares[top].square);if(sqs.find(squares[top].hash()) == sqs.end()){squares[top].prev = i;squares[top].op = 'A';sqs.insert(squares[top].hash());top++;}copy(sq.square, squares[top].square);B(squares[top].square);if(sqs.find(squares[top].hash()) == sqs.end()){squares[top].prev = i;squares[top].op = 'B';sqs.insert(squares[top].hash());top++;}copy(sq.square, squares[top].square);C(squares[top].square);if(sqs.find(squares[top].hash()) == sqs.end()){squares[top].prev = i;squares[top].op = 'C';sqs.insert(squares[top].hash());top++;}}stack<char> seq;while(final != 0){seq.push(squares[final].op);final = squares[final].prev;}fprintf(fout, "%d\n", seq.size());while(!seq.empty()){fprintf(fout, "%c", seq.top());seq.pop();}fprintf(fout, "\n");return 0;
}



这篇关于USACO Magic Squares 解题报告的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/858111

相关文章

【专题】2024飞行汽车技术全景报告合集PDF分享(附原数据表)

原文链接: https://tecdat.cn/?p=37628 6月16日,小鹏汇天旅航者X2在北京大兴国际机场临空经济区完成首飞,这也是小鹏汇天的产品在京津冀地区进行的首次飞行。小鹏汇天方面还表示,公司准备量产,并计划今年四季度开启预售小鹏汇天分体式飞行汽车,探索分体式飞行汽车城际通勤。阅读原文,获取专题报告合集全文,解锁文末271份飞行汽车相关行业研究报告。 据悉,业内人士对飞行汽车行业

usaco 1.3 Prime Cryptarithm(简单哈希表暴搜剪枝)

思路: 1. 用一个 hash[ ] 数组存放输入的数字,令 hash[ tmp ]=1 。 2. 一个自定义函数 check( ) ,检查各位是否为输入的数字。 3. 暴搜。第一行数从 100到999,第二行数从 10到99。 4. 剪枝。 代码: /*ID: who jayLANG: C++TASK: crypt1*/#include<stdio.h>bool h

usaco 1.3 Calf Flac(暴搜)

思路是暴搜。 需要注意的地方是输入的方法,以及输出时的换行。 代码: /*ID: who jayLANG: C++TASK: calfflac*/#include<stdio.h>#include<string.h>#include<math.h>int main(){freopen("calfflac.in","r",stdin);freopen("calfflac.ou

usaco 1.3 Barn Repair(贪心)

思路:用上M块木板时有 M-1 个间隙。目标是让总间隙最大。将相邻两个有牛的牛棚之间间隔的牛棚数排序,选取最大的M-1个作为间隙,其余地方用木板盖住。 做法: 1.若,板(M) 的数目大于或等于 牛棚中有牛的数目(C),则 目测 给每个牛牛发一个板就为最小的需求~ 2.否则,先对 牛牛们的门牌号排序,然后 用一个数组 blank[ ] 记录两门牌号之间的距离,然后 用数组 an

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

usaco 1.2 Palindromic Squares(进制转化)

考察进制转化 注意一些细节就可以了 直接上代码: /*ID: who jayLANG: C++TASK: palsquare*/#include<stdio.h>int x[20],xlen,y[20],ylen,B;void change(int n){int m;m=n;xlen=0;while(m){x[++xlen]=m%B;m/=B;}m=n*n;ylen=0;whi

usaco 1.2 Name That Number(数字字母转化)

巧妙的利用code[b[0]-'A'] 将字符ABC...Z转换为数字 需要注意的是重新开一个数组 c [ ] 存储字符串 应人为的在末尾附上 ‘ \ 0 ’ 详见代码: /*ID: who jayLANG: C++TASK: namenum*/#include<stdio.h>#include<string.h>int main(){FILE *fin = fopen (

usaco 1.2 Milking Cows(类hash表)

第一种思路被卡了时间 到第二种思路的时候就觉得第一种思路太坑爹了 代码又长又臭还超时!! 第一种思路:我不知道为什么最后一组数据会被卡 超时超了0.2s左右 大概想法是 快排加一个遍历 先将开始时间按升序排好 然后开始遍历比较 1 若 下一个开始beg[i] 小于 tem_end 则说明本组数据与上组数据是在连续的一个区间 取max( ed[i],tem_end ) 2 反之 这个

usaco 1.2 Transformations(模拟)

我的做法就是一个一个情况枚举出来 注意计算公式: ( 变换后的矩阵记为C) 顺时针旋转90°:C[i] [j]=A[n-j-1] [i] (旋转180°和270° 可以多转几个九十度来推) 对称:C[i] [n-j-1]=A[i] [j] 代码有点长 。。。 /*ID: who jayLANG: C++TASK: transform*/#include<

usaco 1.1 Broken Necklace(DP)

直接上代码 接触的第一道dp ps.大概的思路就是 先从左往右用一个数组在每个点记下蓝或黑的个数 再从右到左算一遍 最后取出最大的即可 核心语句在于: 如果 str[i] = 'r'  ,   rl[i]=rl[i-1]+1, bl[i]=0 如果 str[i] = 'b' ,  bl[i]=bl[i-1]+1, rl[i]=0 如果 str[i] = 'w',  bl[i]=b