ural 1016 Cube on the Walk 状态压缩最短路

4 篇文章 0 订阅
2 篇文章 0 订阅

http://acm.timus.ru/problem.aspx?space=1&num=1016

http://acm.hust.edu.cn:8080/judge/problem/viewProblem.action?id=14076

1016. Cube on the Walk

Time Limit: 2.0 second
Memory Limit: 16 MB
A cube placed on some square of a usual chessboard. A cube completely covers one square of the chessboard but not anything more, i.e. size of cube’s edge is equal to the size of square’s edge. The integer number  N (0 ≤  N ≤ 1000) is written on the each side of the cube. However it does not imply that the same number is written on all sides. On the different sides there are might be different numbers. One can move a cube to the next square by rotating it around the common edge of the cube and the square. During this motion the sum of the numbers on the bottom of the cube is calculated (each number is added as much times as it appeared at the bottom of the cube). Your task is to find the route between two given squares with the minimal sum of numbers on the bottom side. The numbers on the bottom at the beginning and at the end of walk are also counted. The start and the end positions are different.

Input

The only line of the input contains the necessary data set (only spaces used as delimiters). First, the start position is given, and then the end position. Each position is composed from the character (from ‘a’ to ‘h’ inclusively, it defines the number of the column on the chessboard) and the digit (from ‘1’ to ‘8’ inclusively, it defines the number of the row). That positions are followed by 6 numbers which are currently written on the near, far, top, right, bottom and left sides of the cube correspondingly.

Output

The only line of the output must contain the minimal sum followed by the optimal route (one of possible routes with minimal sum). The route must be represented by the sequence of cube’s positions during the walk. It begins with the start square and ends with the finish square. All square positions on the chessboard should be given in the same format as in input. Use spaces as delimiters.

Sample

input output
e2 e3 0 8 1 2 1 1
5 e2 d2 d1 e1 e2 e3

YM一下ZYC,用橡皮模拟了一下就推完状态秒杀了

 
init123456
turnleft124563
turnright126345
turnup531426
turndown352416

init:x=e[0]<<50|e[1]<<40|e[2]<<30|e[3]<<20|e[4]<<10|e[5]

turnleft: ((x&d1)|(x&d2)|(x&d4)<<10|(x&d5)<<10|(x&d6)<<10|(x&d3)>>30)

turnright:((x&d1)|(x&d2)|(x&d6)<<30|(x&d3)>>10|(x&d4)>>10|(x&d5)>>10)

turnup:((x&d5)<<40|(x&d3)<<10|(x&d1)>>20|(x&d4)|(x&d2)>>30|(x&d6))

turndown:((x&d3)<<20|(x&d5)<<30|(x&d2)>>10|(x&d4)|(x&d1)>>40|(x&d6))

然后就是最短路了

#include<iostream>
#include<algorithm>
#include<cstring>
#include<fstream>
#include<queue>
#include<map>
using namespace std;
typedef long long ll;
const ll d6=1023,d5=d6<<10,d4=d5<<10,d3=d4<<10,d2=d3<<10,d1=d2<<10;
#define tl(x) ((x&d1)|(x&d2)|(x&d4)<<10|(x&d5)<<10|(x&d6)<<10|(x&d3)>>30)
#define tr(x) ((x&d1)|(x&d2)|(x&d6)<<30|(x&d3)>>10|(x&d4)>>10|(x&d5)>>10)
#define tu(x) ((x&d5)<<40|(x&d3)<<10|(x&d1)>>20|(x&d4)|(x&d2)>>30|(x&d6))
#define td(x) ((x&d3)<<20|(x&d5)<<30|(x&d2)>>10|(x&d4)|(x&d1)>>40|(x&d6))
map<ll,int>mm;
struct Nod
{
    int x,y,d;
    ll s;
    Nod() {}
    Nod(int x,int y,int d,ll s):x(x),y(y),d(d),s(s) {}
    bool operator < (const Nod &p)const{return d>p.d;}
};
int d[10][10][30];
bool vis[10][10][30];
Nod pre[10][10][30];
int dx[]= {0,-1,0,1};
int dy[]= {-1,0,1,0}; //d l u r
int dij(int sx,int sy,ll ss,int tx,int ty,ll &ts)
{
    priority_queue<Nod>q;
    d[sx][sy][mm[ss]]=(ss&d5)>>10;
    q.push(Nod(sx,sy,(ss&d5)>>10,ss));
    int ux,uy,ud,vx,vy,vd;
    ll us,vs;
    while(!q.empty())
    {
        ux=q.top().x;uy=q.top().y;
        ud=q.top().d;us=q.top().s;
        q.pop();
        if(ux==tx&&uy==ty){ts=us;return ud;}
        if(vis[ux][uy][mm[us]]) continue;
        vis[ux][uy][mm[us]]=1;
        for(int i=0; i<4; i++)
        {
            vx=ux+dx[i];vy=uy+dy[i];
            if(vx<1||vx>8||vy<1||vy>8) continue;
            if(i==0) vs=td(us);
            if(i==1) vs=tl(us);
            if(i==2) vs=tu(us);
            if(i==3) vs=tr(us);
            vd=ud+((vs&d5)>>10);
            if(vd<d[vx][vy][mm[vs]])
            {
                d[vx][vy][mm[vs]]=vd;
                q.push(Nod(vx,vy,vd,vs));
                pre[vx][vy][mm[vs]]=Nod(ux,uy,mm[us],0);
            }
        }
    }
}
void path(Nod p)//print path
{
    if(p.x==-1) return;
    path(pre[p.x][p.y][p.d]);
    printf(" %c%c",p.x+96,p.y+48);
}
int main()
{
    memset(d,63,sizeof(d));
    memset(vis,0,sizeof(vis));
    memset(pre,-1,sizeof(pre));
    char a,b,c,f;
    ll e[6];
    cin>>a>>b>>c>>f;
    a-=96,b-=48,c-=96,f-=48;
    for(int i=0; i<6; i++) cin>>e[i];
    ll st,x=e[0]<<50|e[1]<<40|e[2]<<30|e[3]<<20|e[4]<<10|e[5],xx=x;
    int i,j,k,cnt=0;
    for(i=0; i<4; i++,xx=tl(xx))
        for(j=0; j<4; j++,xx=tu(xx))
            for(k=0; k<4; k++,xx=tl(xx))
                if(mm.find(xx)==mm.end()) mm[xx]=cnt++;//find all states
    cout<<dij(a,b,x,c,f,st);
    path(Nod(c,f,mm[st],0));
    return 0;
}


  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值