SkipStones

/*Problem Statement

When a stone is thrown across water, sometimes it will land on the water and bounce rather than falling in right away.

Suppose that a stone is thrown a distance of n. On each successive bounce it will travel half the distance as the previous bounce (rounded down to the nearest integer).

When it can not travel any further, it falls into the water.

If, at any point, the stone lands on an obstruction rather than water, it will not bounce, but will simply deflect and fall into the water.

Please look at the figure for further clarification (with black, red and green cells representing banks, obstructions and free water respectively).

So, if the stone is thrown a distance 7, it will bounce and travel a distance of 3, then finally a distance of 1,

having travelled a total distance of 11 (the green path in the figure).

If a stone is thrown a distance of 8, it will reach the opposite bank, and if thrown at distances of 2 or 6 it will hit an obstruction during its travel.

These are the three red paths in the figure.

You are given a String water. An ‘X’ represents an obstruction, while a ‘.’represents water free from obstruction.

You are to return an int representing the maximum distance a stone can travel and finally fall in the water, without hitting any obstructions,

and without reaching the opposite bank (going beyond the end of the string). You may choose any initial distance for the throw,

which starts from the left side of the string. A distance of 1 is the first character of the string, etc. If no initial throw will result in the stone

landing in the water without hitting an obstruction, return 0.


Definition:

Class:            SkipStones
Method:            maxDistance
Parameters:        String
Returns:        int
Method signature:    int maxDistance(String water)*/

package skipStones;

public class SkipStones {

    public static int maxDistance(String water) {
        int dis = initDistance(water.length());
       
        int[] distances = new int[dis];
        for(int i = 0; i < dis; i++) {
            distances[i] = i + 1;
        }
       
        int result = removeStone(distances, water);
       
        int temp = result;
        while((temp = temp/2) != 0) {
            result = result + temp;
        }
       
        return result;
    }
   
    private static int initDistance(int length) {
       
        int[] possibleTree = new int[length];
        int path = length - 1;
       
        for(int i=0; i < length; i++) {
            if(i == 0) {
                possibleTree[i] = path;
            } else {
                possibleTree[i] = possibleTree[i/2] - i - 1;
                if(possibleTree[i] == 0) return i + 1;
                else if(possibleTree[i] < 0) return i;
               
                if (i + 1 < length) {
                    possibleTree[i + 1] = possibleTree[i / 2] - i - 2;
                    if (possibleTree[i + 1] == 0) return i + 2;
                    else if (possibleTree[i + 1] < 0) return i + 1;

                    i++;
                }
            }
        }
        return 0;
    }
   
    private static int removeStone(int[] distances, String water) {
        char[] stones = water.toCharArray();
       
        for (int i = 0; i < stones.length; i++) {
            if (stones[i] == 'X') {
                if (i < distances.length) {
                    distances[i] = 0;
                }
                possibleDistance(distances, i + 1);
            }
        }
       
        for(int k = distances.length - 1; k >= 0; k--) {
            if(distances[k] != 0) return distances[k];
        }
       
        return 0;
    }
   
    private static void possibleDistance(int[] distances, int length) {
       
        int counter = 0;

        for(int i=0; i < distances.length; i++) {
            int temp = distances[i];
            if(temp == length) {
                distances[i] = 0;
            } else {
                int value = distances[i];
                while((temp = temp/2) != 0) {
                    value = value + temp;
                    if(value == length) {
                        distances[i] = 0;
                        break;
                    }
                }
            }
        }
    }
}
 
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。、可私 6信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 、可私信6博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 、可私信6博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值