挑战程序竞赛系列(64):4.7字符串上的动态规划(2)

挑战程序竞赛系列(64):4.7字符串上的动态规划(2)

传送门:AOJ 2212: Stelen Jewel


题意:

给定一张地图,求出从起点到终点的最短步数。其中可达路径中的移动模式不允许出现指定的字符集。

题意可参考博文:
http://www.hankcs.com/program/algorithm/aoj-2212-stolen-jewel.html

思路比较好想:
BFS的框架➕AhoCorasick自动机的状态转移,普通迷宫的状态即为当前位置,一般采用两种算法(均为暴力)BFS和DFS,所以本题基本上也是这种老思路了,但在可达的路径中,如果出现了指定的非法序列,则认为是无效路径。

alt text

上述路径是非法的。

alt text

合法且最短的,从图中可以看出,一个格子可以抵达多次,这在普通迷宫中是不被允许的,如何才能做到这个?重新定义状态,除了位置本身的信息外,再记录AC自动机中的某个状态,这样每个格子可以多次抵达,且状态能否转移取决于AC自动机的判断。因为状态有限,所以BFS能够在指定时间内暴力搜出最短路径。

接着就得上AC自动机了,找到一份比较不错的资料,链接如下:
http://blog.csdn.net/morgan_xww/article/details/7831074/

主要分为三个阶段:

阶段1:把模式串用Trie树存起来,每个终点为非法状态
阶段2:建立每个状态失败后的fail点
阶段3:每个状态加入指定字符后能够转移到的状态

其中还需要注意,每个状态中,同样不能出现被禁止的任何模式,需要遍历一次。

代码如下:

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Map;
import java.util.Queue;
import java.util.Set;
import java.util.StringTokenizer;
import java.util.TreeMap;

public class Main{

    String INPUT = "./data/judge/201709/A2212.txt";

    public static void main(String[] args) throws IOException {
        new Main().run();
    }

    static final char[] TAG = {'D','U','L','R'};
    static final int[] R = {1, -1, 0, 0};
    static final int[] C = {0, 0, -1, 1};
    static final int INF = 0x3f3f3f3f;

    static int idx = 0;

    class State{
        int i;
        int j;
        Node s;
        State(int i, int j, Node s){
            this.i = i;
            this.j = j;
            this.s = s;
        }

        @Override
        public int hashCode() {
            return i * 31 + j * 17 + s.id * 11;
        }

        @Override
        public boolean equals(Object obj) {
            if (this == obj) return true;
            if (obj == null ||obj.getClass() != getClass()) return false;
            State o = (State) obj;
            return o.i == i && o.j == j && o.s == s;
        }
    }

    class Node{
        Map<Character, Node> cs = new TreeMap<Character, Node>();
        Node[] next = new Node[4];
        Node fail;
        boolean accept;
        int id;

        Node() {id = idx++;}
    }

    Node root;
    void AhoCorasick(char[][] p) {
        int n = p.length;
        root = new Node();
        for (int i = 0; i < n; ++i) {
            Node t = root;
            for (char c : p[i]) {
                if (!t.cs.containsKey(c)) t.cs.put(c, new Node());
                t = t.cs.get(c);
            }
            t.accept = true;
        }

        // fail
        Queue<Node> que = new LinkedList<Node>();
        que.offer(root);
        while (!que.isEmpty()) {
            Node r = que.poll();
            for (Map.Entry<Character, Node> entry : r.cs.entrySet()) {
                char c = entry.getKey();
                Node v = entry.getValue();
                que.offer(v);
                Node f = r.fail;
                while (f != null && !f.cs.containsKey(c)) {
                    f = f.fail;
                }
                if (f == null) {
                    v.fail = root;
                }
                else {
                    v.fail = f.cs.get(c);
                }
            }
        }

        // next
        que.offer(root);
        while (!que.isEmpty()) {
            Node t = que.poll();
            outer : for (char[] cs : p) {
                Node r = t;
                for (char c : cs) {
                    if (r.cs.containsKey(c)) {
                        r = r.cs.get(c);
                    }
                    else continue outer;
                }
                r.accept = true;
            }
            for (int i = 0; i < 4; ++i) {
                char c = TAG[i];
                Node r = t;
                while (r != null && !r.cs.containsKey(c)) {
                    r = r.fail;
                }
                if (r == null) {
                    t.next[i] = root;
                }
                else {
                    t.next[i] = r.cs.get(c);
                }
            }
            for (Node r : t.cs.values()) {
                que.offer(r);
            }
        }
    }

    int startR;
    int startC;
    int endR, endC;

    int solve(char[][] f) {
        int N = f.length;
        int M = f[0].length;
        int n = ni();
        char[][] p = new char[n][];
        for (int i = 0; i < n; ++i) {
            p[i] = ns().toCharArray();
        }

        AhoCorasick(p);

        State state = new State(startR, startC, root);
        Queue<State> queue = new LinkedList<>();
        Set<State> vis = new HashSet<>();
        queue.offer(state);
        vis.add(state);

        int turn = 0;
        int ans  = INF;
        boolean find = false;
        outer: while (!queue.isEmpty() && !find) {
            int size = queue.size();
            for (int i = 0; i < size; ++i) {
                State now = queue.poll();
                if (now.i == endR && now.j == endC) {
                    ans = turn;
                    find = true;
                    break outer;
                }
                for (int j = 0; j < 4; ++j) {
                    int nx = now.i + R[j];
                    int ny = now.j + C[j];
                    if (nx < 0 || nx >= N || ny < 0 || ny >= M) continue;
                    if (f[nx][ny] == '#') continue;
                    Node next = now.s.next[j];
                    if (next.accept) continue;
                    State ns = new State(nx, ny, next);
                    if (vis.contains(ns)) continue;
                    queue.offer(ns);
                    vis.add(ns);
                }
            }
            turn++;
        }
        return ans == INF ? -1 : ans;
    }

    void read() {
        while (true) {
            int N = ni();
            if (N == 0) break;
            int M = ni();
            char[][] f = new char[N][M];
            for (int i = 0; i < N; ++i) {
                char[] cs = ns().toCharArray();
                for (int j = 0; j < M; ++j) {
                    f[i][j] = cs[j];
                    if (cs[j] == 'S') {
                        startR = i;
                        startC = j;
                    }
                    if (cs[j] == 'G') {
                        endR = i;
                        endC = j;
                    }
                }
            }
            idx = 0;
            out.println(solve(f));
        }
    }

    FastScanner in;
    PrintWriter out;

    void run() throws IOException {
        boolean oj;
        try {
            oj = ! System.getProperty("user.dir").equals("F:\\java_workspace\\leetcode");
        } catch (Exception e) {
            oj = System.getProperty("ONLINE_JUDGE") != null;
        }

        InputStream is = oj ? System.in : new FileInputStream(new File(INPUT));
        in = new FastScanner(is);
        out = new PrintWriter(System.out);
        long s = System.currentTimeMillis();
        read();
        out.flush();
        if (!oj){
            System.out.println("[" + (System.currentTimeMillis() - s) + "ms]");
        }
    }

    public boolean more(){
        return in.hasNext();
    }

    public int ni(){
        return in.nextInt();
    }

    public long nl(){
        return in.nextLong();
    }

    public double nd(){
        return in.nextDouble();
    }

    public String ns(){
        return in.nextString();
    }

    public char nc(){
        return in.nextChar();
    }

    class FastScanner {
        BufferedReader br;
        StringTokenizer st;
        boolean hasNext;

        public FastScanner(InputStream is) throws IOException {
            br = new BufferedReader(new InputStreamReader(is));
            hasNext = true;
        }

        public String nextToken() {
            while (st == null || !st.hasMoreTokens()) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (Exception e) {
                    hasNext = false;
                    return "##";
                }
            }
            return st.nextToken();
        }

        String next = null;
        public boolean hasNext(){
            next = nextToken();
            return hasNext;
        }

        public int nextInt() {
            if (next == null){
                hasNext();
            }
            String more = next;
            next = null;
            return Integer.parseInt(more);
        }

        public long nextLong() {
            if (next == null){
                hasNext();
            }
            String more = next;
            next = null;
            return Long.parseLong(more);
        }

        public double nextDouble() {
            if (next == null){
                hasNext();
            }
            String more = next;
            next = null;
            return Double.parseDouble(more);
        }

        public String nextString(){
            if (next == null){
                hasNext();
            }
            String more = next;
            next = null;
            return more;
        }

        public char nextChar(){
            if (next == null){
                hasNext();
            }
            String more = next;
            next = null;
            return more.charAt(0);
        }
    }

    static class ArrayUtils {

        public static void fill(int[][] f, int value) {
            for (int i = 0; i < f.length; ++i) {
                Arrays.fill(f[i], value);
            }
        }

        public static void fill(int[][][] f, int value) {
            for (int i = 0; i < f.length; ++i) {
                fill(f[i], value);
            }
        }

        public static void fill(int[][][][] f, int value) {
            for (int i = 0; i < f.length; ++i) {
                fill(f[i], value);
            }
        }
    }
}

alt text

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值