2014 WAP校园招聘笔试题

 2014 WAP校园招聘笔试题#

Problem's Link:   http://www.doc88.com/p-6751117015483.html
#


 

WAP公司笔试题

We are planning an orienteering game.
The aim of this game is to arrive at the goal (G) from the start (S) with the shortest distance.
However, the players have to pass all the checkpoints (@) on the map.
An orienteering map is to be given in the following format.
########
#@....G#
##.##@##
#..@..S#
#@.....#
########
In this problem, an orienteering map is to be given.
Calculate the minimum distance from the start to the goal with passing all the checkpoints.
Specification
* A map consists of 5 characters as following.
You can assume that the map does not contain any invalid characters and
the map has exactly one start symbol 'S' and exactly one goal symbol 'G'.
* 'S' means the orienteering start.
* 'G' means the orienteering goal.
* '@' means an orienteering checkpoint.
* '.' means an opened-block that players can pass.
* '#' means a closed-block that players cannot pass.
* It is allowed to move only by one step vertically or horizontally (up, down, left, or right) to the
next block.
Other types of movements, such as moving diagonally (left up, right up, left down and right down)
and skipping one or more blocks, are NOT permitted.
* You MUST NOT get out of the map.
* Distance is to be defined as the number of movements to the different blocks.
* You CAN pass opened-blocks, checkpoints, the start, and the goal more than once if necessary.
* You can assume that parameters satisfy following conditions.
* 1 <= width <= 100
* 1 <= height <= 100
* The maximum number of checkpoints is 18.

几个样例:


<Input>
5 4
#####
#...#
#S#G#
#####
<Output>
4

<Input>
5 5
#####
#.@@#
#S###
#..G#
#####
<Output>
9

<Input>
5 5
#####
#S..#
##G##
#..@#
#####
<Output>
6

Mean: 

M

 

analyse:

A

Time complexity: O(n)

 

Source code: 

 

复制代码
/*
* this code is made by crazyacking
* Verdict: Accepted
* Submission Date: 2015-05-21-23.40
* Time: 0MS
* Memory: 137KB
*/
#include <queue>
#include <cstdio>
#include <set>
#include <string>
#include <stack>
#include <cmath>
#include <climits>
#include <map>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
#define  LL long long
#define  ULL unsigned long long
using namespace std;

const int maxn = 1e2 + 10;
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define pb push_back
std::vector<int>path;
const int INF = 1 << 20;
struct Point
{
    int x, y;
    bool operator < ( const Point &a )const
    {
        return x < a.x || ( x == a.x ) && y < a.y;
    }
};
std::vector<Point>P;
char mat[maxn][maxn];
int vis[maxn][maxn];
int w, h, s, e;
int d[1 << 20][20];
int dx[] = { -1, 0, 0, 1};
int dy[] = {0, -1, 1, 0};
int dist[25][25];
int main() {
    ios_base::sync_with_stdio( false );
    cin.tie( 0 );
    while ( cin >> w >> h ) {
        map<Point, int>id;
        P.clear();
        path.clear();
        memset( d, 100, sizeof d );
        memset( dist, 100, sizeof dist );
        for ( int i = 0; i < h; i++ ) {
            scanf( "%s", mat[i] );
            for ( int j = 0; mat[i][j]; ++j ) {
                char &c = mat[i][j];
                if ( c == 'S' || c == 'G' || c == '@' ) {
                    P.pb( ( Point ) {i, j} );
                    int sz = P.size();
                    id[P[sz - 1]] = sz;
                    if ( c == 'S' ) { s = sz - 1; }
                    else if ( c == 'G' ) { e = sz - 1; }
                    path.pb( sz - 1 );
                }
            }
        }
        for ( int i = 0; i < path.size(); i++ ) {
            Point now = P[path[i]];
            int x = path[i];
            //out<<"x "<<x<<endl;
            dist[x][x] = 0;
            memset( vis, 0, sizeof vis );
            vis[now.x][now.y] = 1;
            queue<Point>q;
            q.push( now );
            //cout<<"Bfs"<<endl;
            while ( !q.empty() ) {
                now = q.front(); q.pop();
                for ( int i = 0; i < 4; i++ ) {
                    int nx = now.x + dx[i], ny = now.y + dy[i];
                    if ( nx >= 0 && nx < h && ny >= 0 && ny < w && mat[nx][ny] != '#' && !vis[nx][ny] ) {
                        Point tp = ( Point ) {nx, ny};
                        q.push( tp );
                        vis[nx][ny] = vis[now.x][now.y] + 1;
                        if ( id[tp] ) {
                            dist[x][id[tp] - 1] = vis[now.x][now.y];
                            //cout<<"dist "<<x<<" to "<<id[tp]-1<<' '<<dist[x][id[tp]-1]<<endl;
                        }
                    }
                }
            }
        }
        d[1 << s][s] = 0;
        int M = path.size();
        for ( int i = 0; i < ( 1 << M ); ++i ) {
            for ( int j = 0; j < M; j++ ) {
                int p = path[j];
                for ( int k = 0; 1 << k <= i; k++ ) {
                    if ( i & ( 1 << k ) ) {
                        d[i | ( 1 << p )][p] = min( d[i | ( 1 << p )][p], d[i][k] + dist[k][p] );
                    }
                }
            }
        }
        cout << d[( 1 << M ) - 1][e] << endl;
    }
    return 0;
}
View Code
复制代码

 

 

 

posted @   北岛知寒  阅读(1326)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
历史上的今天:
2014-05-03 codeforces --- Round #244 (Div. 2) A. Police Recruits
2014-05-03 线段树 --- (区间维护+逆推)
2014-05-03 线段数 --- (单点更新、求逆序对)
2014-05-03 线段树 --- (单点更新、区间求和、模板题)
点击右上角即可分享
微信分享提示
主题色彩