LeetCode的几道题

一、捡石头 292

思路就是:

谁面对4块石头的时候,谁就输
(因为每次就是1-3块石头,如果剩下4块石头,你怎么拿,我都能把剩下的拿走,所以你就要想尽办法让对面面对4块石头的倍数,

  • 比如有10块石头,你想办法让对方面对4的倍数,10%4=2,也就是你先手拿走2块
  • 比如有13块石头,你想办法让对方面对4的倍数,13%4=1,也就是你先手拿走1块

但是假如你面对了4的倍数,你铁定输,因为对方也是聪明人。

于是先手能不能赢,就看

class Solution {
    public boolean canWinNim(int n) {
        return n % 4 != 0 ;
    }
}

二、捡石头 Nim 游戏 II 1908

int  nums = [ 1, 5, 8, 6 ]

我和你进行捡石头游戏,假如有4堆石头,
第一堆有1个石头,
第二堆有5个石头,
第三堆有8个石头,
第四堆有6个石头,

每次只能从最前面或者最后面取1堆石头,能否保证先手一定能赢

分析如下:

public static void main(String[] args) {
        int[] nums = {1, 5, 8, 6};
        int[] nums2 = {3, 9, 1, 2};
        int[] nums3 = {1, 1, 1, 1};
        int[] nums4 = {2, 5, 1, 3, 7, 8, 9, 11};

        int[] nums5 = {1000,0,10000,2,1};
        int[] nums6 = {10, 8, 20, 15, 3};
        int[] nums7 = {1, 1, 1, 10};

//        int[] nums0 = {5, 8, 6};
//        System.out.println(firstHandCanScore(nums0));

        System.out.println(firstHandCanScore(nums));
        System.out.println(firstHandCanScore(nums2));
        System.out.println(firstHandCanScore(nums3));
        System.out.println(firstHandCanScore(nums4));
        System.out.println(firstHandCanScore(nums5));
    }

    private static boolean firstHandCanScore(int[] nums) {
        WinScoreData winScoreData = process(nums, 0, nums.length - 1);
        System.out.println(winScoreData.winScore);
        return winScoreData.winScore > 0;
    }

    private static WinScoreData process(int[] nums, int fromIndex, int toIndex) {
        if (fromIndex == toIndex) {
            return new WinScoreData(nums, fromIndex, toIndex, nums[fromIndex]);
        }
        int startLeft = nums[fromIndex];
        WinScoreData chooseLeftWinScore = process(nums, fromIndex + 1, toIndex);
        int leftWinScore = startLeft - chooseLeftWinScore.winScore; // 选左边之后的赢面

        int startRight = nums[toIndex];
        WinScoreData chooseRightWinScore = process(nums, fromIndex, toIndex - 1);
        int rightWinScore = startRight - chooseRightWinScore.winScore; // 选右边之后的赢面


        int winScore = Math.max(leftWinScore, rightWinScore);
        return new WinScoreData(nums, fromIndex, toIndex, winScore);
    }

    @AllArgsConstructor
    public static class WinScoreData {
        private int[] nums;
        private int fromIndex;
        private int toIndex;
        private int winScore;
    }

相关推荐

  1. 每天面试|Kafka基础概念(一)

    2023-12-07 07:52:04       46 阅读
  2. 汇编

    2023-12-07 07:52:04       52 阅读
  3. 练习题八

    2023-12-07 07:52:04       37 阅读
  4. [数据结构]oj二叉树选择题

    2023-12-07 07:52:04       39 阅读
  5. 每天学习面试|Kafka(二)架构设计类

    2023-12-07 07:52:04       46 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2023-12-07 07:52:04       98 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2023-12-07 07:52:04       106 阅读
  3. 在Django里面运行非项目文件

    2023-12-07 07:52:04       87 阅读
  4. Python语言-面向对象

    2023-12-07 07:52:04       96 阅读

热门阅读

  1. ssh框架原理及流程

    2023-12-07 07:52:04       56 阅读
  2. flutter的CircularProgressIndicator基本使用

    2023-12-07 07:52:04       62 阅读
  3. 【大数据开发心得】合理使用Flink参数配置

    2023-12-07 07:52:04       49 阅读
  4. 使用OpenGL加载和显示Q3O类型的3D模型文件

    2023-12-07 07:52:04       63 阅读
  5. LeetCode第136题 只出现一次的数字

    2023-12-07 07:52:04       67 阅读
  6. pillow opencv matplotlib读写图片有什么区别

    2023-12-07 07:52:04       51 阅读
  7. 原型模式(Prototype Pattern)

    2023-12-07 07:52:04       50 阅读