IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> LeetCode每日一题(Sum Game) -> 正文阅读

[数据结构与算法]LeetCode每日一题(Sum Game)

Alice and Bob take turns playing a game, with Alice starting first.

You are given a string num of even length consisting of digits and ‘?’ characters. On each turn, a player will do the following if there is still at least one ‘?’ in num:

Choose an index i where num[i] == ‘?’.
Replace num[i] with any digit between ‘0’ and ‘9’.
The game ends when there are no more ‘?’ characters in num.

For Bob to win, the sum of the digits in the first half of num must be equal to the sum of the digits in the second half. For Alice to win, the sums must not be equal.

For example, if the game ended with num = “243801”, then Bob wins because 2+4+3 = 8+0+1. If the game ended with num = “243803”, then Alice wins because 2+4+3 != 8+0+3.
Assuming Alice and Bob play optimally, return true if Alice will win and false if Bob will win.

Example 1:

Input: num = “5023”
Output: false

Explanation: There are no moves to be made.
The sum of the first half is equal to the sum of the second half: 5 + 0 = 2 + 3.

Example 2:

Input: num = “25??”
Output: true

Explanation: Alice can replace one of the '?'s with ‘9’ and it will be impossible for Bob to make the sums equal.

Example 3:

Input: num = “?3295???”
Output: false

Explanation: It can be proven that Bob will always win. One possible outcome is:

  • Alice replaces the first ‘?’ with ‘9’. num = “93295???”.
  • Bob replaces one of the ‘?’ in the right half with ‘9’. num = “932959??”.
  • Alice replaces one of the ‘?’ in the right half with ‘2’. num = “9329592?”.
  • Bob replaces the last ‘?’ in the right half with ‘7’. num = “93295927”.
    Bob wins because 9 + 3 + 2 + 9 = 5 + 9 + 2 + 7.

Constraints:

  • 2 <= num.length <= 105
  • num.length is even.
  • num consists of only digits and ‘?’.

假设
first_half_sum是前半段的已知数字的和
second_half_sum是后半段已知数字的和
first_half_chance_count是前半段’?‘的数量
second_half_chance_count是后半段’?'的数量

可得到
diff = first_half_sum - second_half_sum
chances = first_half_chance_count - second_half_chance_count

如果chances是奇数则一定是Alice胜出, 我也不会推导,但是试过几种情况后我确信这一点, 有能力的大神可以严谨的证明一下。

如果chances是偶数则只有diff + chances / 2 * 9 == 0的情况下才会是Bob胜出


代码实现(Rust):

impl Solution {
    pub fn sum_game(num: String) -> bool {
        let mut diff = 0;
        let mut chances = 0;
        let half_index = num.len() / 2 - 1;
        for (i, c) in num.chars().enumerate() {
            if c == '?' {
                if i > half_index {
                    chances -= 1;
                } else {
                    chances += 1;
                }
            } else {
                if i > half_index {
                    diff -= c.to_string().parse::<i32>().unwrap();
                } else {
                    diff += c.to_string().parse::<i32>().unwrap();
                }
            }
        }
        if (chances as i32).abs() % 2 == 1 {
            return true;
        }
        return !(diff + chances / 2 * 9 == 0);
    }
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2021-09-09 12:01:51  更:2021-09-09 12:03:30 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 1:31:11-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码