java解法

import java.util.*;

public class Main {
    public static void main(String[] args) {
        // 获取输入
        int[] input = getInput();
        // 计算最少使用a的次数
        int result = computeMinAUsage(input[0], input[1], input[2], input[3]);
        // 输出结果
        printResult(result);
    }

    /**
     * 获取输入
     * @return 包含 s, t, a, b 的数组
     */
    private static int[] getInput() {
        Scanner sc = new Scanner(System.in);
        int[] arr = new int[4];
        for (int i = 0; i < 4; i++) {
            arr[i] = sc.nextInt();  // 依次读取 s, t, a, b
        }
        return arr;
    }

    /**
     * 计算最少使用 a 的次数
     * @param s 初始值
     * @param t 目标值
     * @param a 每次步长 a 的值
     * @param b 每次步长 b 的倍数
     * @return 最少使用 a 的次数
     */
    private static int computeMinAUsage(int s, int t, int a, int b) {
        int cnt = 0;  // 初始化使用 a 的次数
        int dif = t - s;  // 计算目标差值

        // 不断增加 cnt 的值,直到满足条件
        while (true) {
            // 检查是否满足条件
            if ((dif - a * cnt) % b == 0 || (dif + a * cnt) % b == 0) {
                return Math.abs(cnt);  // 返回绝对值,确保非负
            }
            cnt++;  // 尝试更大的 cnt
        }
    }

    /**
     * 输出结果
     * @param result 计算得到的结果
     */
    private static void printResult(int result) {
        System.out.println(result);  // 打印结果
    }
}

 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

C++解法

更新中
 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

C解法

更新中
 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

JS解法

const readline = require("readline");

const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout,
});

// 监听输入行,处理逻辑
rl.on("line", (line) => {
    // 解析输入的 s, t, a, b
    const [s, t, a, b] = line.split(" ").map(Number);

    // 调用函数计算最小的 x 值并输出结果
    console.log(findMinimumX(s, t, a, b));
});

/**
 * 计算最小的 x 值,使得 (t - s - a * x) 或 (t - s + a * x) 是 b 的倍数
 *
 * @param {number} s 起始值
 * @param {number} t 目标值
 * @param {number} a 步长 a
 * @param {number} b 步长 b 的倍数
 * @returns {number} 最小的非负整数 x
 */
function findMinimumX(s, t, a, b) {
    // 计算目标差值
    let diff = t - s;

    // 初始化 x 为 0
    let x = 0;

    // 枚举 x
    while (true) {
        // 检查是否满足条件:正向使用 a
        let positiveX = (diff - a * x) / b;
        // 检查是否满足条件:反向使用 a
        let negativeX = (diff + a * x) / b;

        // 如果满足任意条件,返回 x
        if (Number.isInteger(positiveX) || Number.isInteger(negativeX)) {
            return Math.abs(x); // 确保返回非负整数
        }

        // 增加 x 的值
        x++;
    }
}

 class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">

注意:

如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏

注:本文转载自blog.csdn.net的CodeClimb的文章"https://blog.csdn.net/CodeClimb/article/details/145059348"。版权归原作者所有,此博客不拥有其著作权,亦不承担相应法律责任。如有侵权,请联系我们删除。
复制链接

评论记录:

未查询到任何数据!