2018 蓝桥杯省赛 B 组模拟赛(五) 结果填空:藏宝图

bfs预处理两个点之间的距离,全排列求最短总路程.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<string>
#include<algorithm>
#include<iostream>
#include<queue>
#include<map>
#include<cmath>
#include<set>
#include<stack>
#define ll long long
#define pb push_back
#define max(x,y) ((x)>(y)?(x):(y))
#define min(x,y) ((x)>(y)?(y):(x))
#define cls(name,x) memset(name,x,sizeof(name))
#define fs first
#define sc second
#define mp make_pair
#define L(x) (1<<x)
#define next Next
#define index Index
using namespace std;
const int inf=1e9+10;
const ll llinf=1e17+10;
const int maxn=1e1+10;
const int maxm=1e1+10;
const int mod=1e9+7;
int n;
int dist[maxn][maxn];
pair<int,int> p[maxn];
char mapp[maxn][maxn];
int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
struct node
{
    int x,y;
    int cost;
};
int build(int stx,int sty,int edx,int edy)
{
    int vis[maxn][maxn];
    cls(vis,0);
    queue<node> Q;
    node temp;
    temp.x=stx; temp.y=sty;
    temp.cost=0;
    Q.push(temp);
    while(!Q.empty())
    {
        temp=Q.front();
        Q.pop();
        vis[temp.x][temp.y]=1;
        if(temp.x==edx&&temp.y==edy)
            return temp.cost;
        for(int i=0;i<4;i++)
        {
            node next=temp;
            next.x+=dir[i][0];
            next.y+=dir[i][1];
            next.cost++;
            if(next.x<0||next.y<0||next.x>9||next.y>9||vis[next.x][next.y]||mapp[next.x][next.y]=='x')
                continue;
            Q.push(next);
        }
    }
}
void solve()
{
 
}
int main()
{
    //freopen("in.txt","r",stdin);
    while(~scanf("%d",&n))
    {
        for(int i=0;i<=9;i++)
            scanf("%s",mapp[i]);
        int k=0;
        for(int i=0;i<n;i++)
            for(int j=0;j<n;j++)
            {
                if(mapp[i][j]>='0'&&mapp[i][j]<='9')
                    p[k++]=mp(i,j);
            }
        p[k]=mp(0,0);
        build(p[0].fs,p[0].sc,p[1].fs,p[1].sc);
        for(int i=0;i<=k;i++)
        {
            for(int j=i+1;j<=k;j++)
            {
                dist[i][j]=dist[j][i]=build(p[i].fs,p[i].sc,p[j].fs,p[j].sc);
            }
        }
        int a[]={0,1,2,3,4,5,6,7,8,9};
        int ans=inf;
        do
        {
            int s=dist[10][a[0]]+dist[a[9]][10];
            for(int i=0;i<=8;i++)
            {
                s+=dist[a[i]][a[i+1]];
            }
            ans=min(ans,s);
        }while(next_permutation(a,a+10));
        printf("%d\n",ans);
    }
    return 0;
}

  

posted @   爱种树的码农  阅读(424)  评论(0编辑  收藏  举报
编辑推荐:
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 数据库服务器 SQL Server 版本升级公告
· C#/.NET/.NET Core技术前沿周刊 | 第 23 期(2025年1.20-1.26)
· 程序员常用高效实用工具推荐,办公效率提升利器!
点击右上角即可分享
微信分享提示