結果

問題 No.2440 Accuracy of Integer Division Approximate Functions
ユーザー 👑 MizarMizar
提出日時 2023-08-18 06:08:27
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 1,099 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 50,440 KB
最終ジャッジ日時 2024-06-02 09:59:14
合計ジャッジ時間 10,348 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
39,296 KB
testcase_01 AC 492 ms
49,572 KB
testcase_02 AC 437 ms
48,444 KB
testcase_03 AC 441 ms
48,184 KB
testcase_04 AC 438 ms
48,192 KB
testcase_05 AC 446 ms
48,184 KB
testcase_06 AC 380 ms
49,548 KB
testcase_07 AC 376 ms
49,548 KB
testcase_08 AC 391 ms
49,680 KB
testcase_09 AC 381 ms
49,680 KB
testcase_10 AC 383 ms
49,548 KB
testcase_11 AC 432 ms
49,592 KB
testcase_12 AC 444 ms
48,188 KB
testcase_13 AC 449 ms
49,716 KB
testcase_14 AC 430 ms
48,188 KB
testcase_15 AC 444 ms
48,312 KB
testcase_16 AC 343 ms
50,440 KB
testcase_17 AC 346 ms
50,188 KB
testcase_18 AC 343 ms
50,316 KB
testcase_19 AC 347 ms
49,680 KB
testcase_20 AC 350 ms
50,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// calc sum_{i=0}^{n-1} floor((ai + b) / m)
function floor_sum_unsigned(n, m, a, b) {
    let ans = 0n;
    while(true) {
        if (a >= m) {
            ans += (n * (n - 1n) >> 1n) * (a / m);
            a %= m;
        }
        if (b >= m) {
            ans += n * (b / m);
            b %= m;
        }
        let y_max = a * n + b;
        if (y_max < m) {
            return ans;
        }
        [n, b, m, a] = [y_max / m, y_max % m, a, m];
    }
}

function bigint_abs(x) {
    return x < 0n ? -x : x;
}
function bigint_min(...args) {
    return args.reduce((m, e) => e < m ? e : m);
}

function solve(n, d, m, s) {
    let pow2s = 1n << s, dm = d * m;
    if (pow2s != dm) {
        n = bigint_min(n, d * pow2s / bigint_abs(dm - pow2s));
        n -= bigint_abs(floor_sum_unsigned(n + 1n, pow2s, m, 0n) - floor_sum_unsigned(n + 1n, d, 1n, 0n));
    }
    return n;
}

let input = require("fs").readFileSync("/dev/stdin", "utf8").matchAll(/\b(\d+) (\d+) (\d+) (\d+)/g);
for (l of input) {
    [n, d, m, s] = l.slice(1).map(t=>BigInt(t));
    console.log(solve(n, d, m, s).toString());
}
0