码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]87 Scramble String

时间:2015-01-06 12:09:05      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:leetcode

https://oj.leetcode.com/problems/scramble-string/

http://blog.csdn.net/linhuanmars/article/details/24506703


public class Solution {
    public boolean isScramble(String s1, String s2)
    {
        if (s1 == null || s2 == null || s1.length() != s2.length())
            return false;
        if (s1.isEmpty() && s2.isEmpty())
            return true;
            
        int length = s1.length();
            
        boolean r[][][] = new boolean[length][length][length + 1]; // 1 -> length;
        
        for (int i = 0 ; i < length ; i ++)
        {
            for (int j = 0 ; j < length ; j ++)
            {
                r[i][j][1] = s1.charAt(i) == s2.charAt(j);
            }
        }
        
        for (int len = 2 ; len <= length ; len ++)
        {
            for (int i = 0 ; i < length - len + 1 ; i ++)
            {
                for (int j = 0 ; j < length - len + 1 ; j ++)
                {
                    for (int k = 1 ; k < len ; k ++)
                    {
                        r[i][j][len] |= (r[i][j][k] && r[i + k][j + k][len - k]) ||
                                        (r[i][j + len - k][k] && r[i + k][j][len - k]);
                    }
                }
            }
        }
        
        return r[0][0][length];
    }
}


[LeetCode]87 Scramble String

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1599579

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!