HDU-5012 dice (BFS)

Source: Internet
Author: User
Problem descriptionthere are 2 special dices on the table. on each face of the dice, a distinct number was written. consider a1.a2, A3, A4, A5, a6 to be numbers written on top face, bottom face, left face, right face, front face and back face of dice. similarly, consider b1.b2, B3, B4, B5, B6 to be numbers on specific faces of dice B. it's guaranteed that all numbers written on dices are integers no smaller than 1 and no more than 6 while AI =aj and Bi =bj for all I =j. specially, sum of numbers on opposite faces may not be 7.

At the beginning, the two dices may face different (which means there exist some I, AI = Bi ). ddy wants to make the two dices look the same from all directions ctions (which means for all I, AI = Bi) only by the following four rotation operations. (Please read the picture for more information)


Now ddy wants to calculate the minimal steps that he has to take to achieve his goal.
 
Inputthere are multiple test cases. Please process till EOF.

For each case, the first line consists of six integers A1, A2, A3, A4, A5, A6, representing the numbers on Dice.

The second line consists of six integers B1, B2, B3, B4, B5, B6, representing the numbers on Dice B.
Outputfor each test case, print a line with a number representing the answer. If there's no way to make two dices exactly the same, output-1.
Sample Input
1 2 3 4 5 61 2 3 4 5 61 2 3 4 5 61 2 5 6 4 31 2 3 4 5 61 4 2 5 3 6
 
Sample output
03-1 question: how to locate the starting and final state: simple BFS + Weight Determination. Pay attention to the on-demand spot of the Weight Determination array.
#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>#include <queue>using namespace std;const int maxn = 6;struct Node{int arr[maxn], step;Node() {memset(arr, 0, sizeof(arr));step = 0; }}start, end;int vis[maxn*200000];int cal(Node a) {int num = 0;for (int i = 0; i < maxn; i++) {num = num * 10 + a.arr[i]; }return num;}bool equal(Node a, Node b) {for (int i = 0; i < maxn; i++)if (a.arr[i] != b.arr[i])return false;return true;}Node turn(Node a, int i) {Node c;if (i == 1) {c.arr[0] = a.arr[3];c.arr[1] = a.arr[2];c.arr[2] = a.arr[0];c.arr[3] = a.arr[1];c.arr[4] = a.arr[4];c.arr[5] = a.arr[5]; }if (i == 2) {c.arr[0] = a.arr[2];c.arr[1] = a.arr[3];c.arr[2] = a.arr[1];c.arr[3] = a.arr[0]; c.arr[4] = a.arr[4];c.arr[5] = a.arr[5]; }if (i == 3) {c.arr[0] = a.arr[5];c.arr[1] = a.arr[4];c.arr[2] = a.arr[2];c.arr[3] = a.arr[3]; c.arr[4] = a.arr[0];c.arr[5] = a.arr[1]; }if (i == 4) {c.arr[0] = a.arr[4];c.arr[1] = a.arr[5];c.arr[2] = a.arr[2];c.arr[3] = a.arr[3]; c.arr[4] = a.arr[1];c.arr[5] = a.arr[0];}return c;}int bfs() {memset(vis, 0, sizeof(vis));queue<Node> q;q.push(start);Node tmp; vis[cal(start)] = 1;while (!q.empty()) {tmp = q.front(); q.pop();            if (equal(tmp, end)) {return tmp.step;}for (int i = 1; i <= 4; i++) {Node c;c = turn(tmp, i);if (!vis[cal(c)]) {c.step = tmp.step + 1; vis[cal(c)] = 1;q.push(c);} }} return -1;}int main() {while (scanf("%d", &start.arr[0]) != EOF) {for (int i = 1; i < maxn; i++) scanf("%d", &start.arr[i]);for (int i = 0; i < maxn; i++) scanf("%d", &end.arr[i]);printf("%d\n", bfs());}    return 0;}



HDU-5012 dice (BFS)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.