結果

問題 No.1869 Doubling?
ユーザー phsplsphspls
提出日時 2022-09-25 16:16:44
言語 Rust
(1.83.0 + proconio)
結果
TLE  
実行時間 -
コード長 1,092 bytes
コンパイル時間 13,955 ms
コンパイル使用メモリ 379,272 KB
実行使用メモリ 816,584 KB
最終ジャッジ日時 2024-12-22 13:01:54
合計ジャッジ時間 44,435 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 806 ms
302,720 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 6 ms
5,120 KB
testcase_07 AC 1 ms
5,120 KB
testcase_08 AC 1 ms
5,120 KB
testcase_09 AC 1 ms
5,120 KB
testcase_10 AC 3 ms
5,120 KB
testcase_11 AC 2 ms
5,120 KB
testcase_12 AC 2 ms
5,120 KB
testcase_13 TLE -
testcase_14 AC 587 ms
264,020 KB
testcase_15 AC 1 ms
5,120 KB
testcase_16 AC 2 ms
5,120 KB
testcase_17 AC 1 ms
5,120 KB
testcase_18 AC 3 ms
5,120 KB
testcase_19 AC 2 ms
5,120 KB
testcase_20 AC 3 ms
5,120 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 5 ms
5,120 KB
testcase_25 AC 1 ms
5,120 KB
testcase_26 AC 2 ms
5,120 KB
testcase_27 AC 4 ms
5,120 KB
testcase_28 AC 6 ms
5,120 KB
testcase_29 AC 4 ms
5,120 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 14 ms
5,120 KB
testcase_34 AC 1 ms
5,120 KB
testcase_35 AC 2 ms
5,120 KB
testcase_36 AC 598 ms
264,024 KB
testcase_37 AC 1 ms
5,120 KB
testcase_38 AC 1 ms
5,120 KB
testcase_39 AC 2 ms
5,120 KB
testcase_40 AC 1 ms
5,120 KB
testcase_41 AC 1 ms
5,120 KB
testcase_42 TLE -
testcase_43 AC 5 ms
5,120 KB
testcase_44 WA -
testcase_45 AC 2 ms
6,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::VecDeque;


fn main() {
    let mut nm = String::new();
    std::io::stdin().read_line(&mut nm).ok();
    let nm: Vec<usize> = nm.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nm[0];
    let m = nm[1];

    if m == 1 {
        println!("{}", n);
        return;
    }
    if n == 1 {
        println!("{}", m);
        return;
    }
    let mut deque = VecDeque::new();
    deque.push_back((3usize, 2usize, 2usize));
    let mut cands = vec![];
    while let Some((summary, cnt, last)) = deque.pop_front() {
        if cnt == n {
            cands.push(summary);
            continue;
        }
        let inserted = last * 2 - 1 > m;
        if last * 2 <= m {
            deque.push_front((summary+last*2, cnt+1, last*2));
        } else if !inserted {
            cands.push(summary + (n - cnt));
        }
        if last * 2 - 1 <= m {
            deque.push_front((summary + last*2-1, cnt+1, last*2-1));
        } else {
            cands.push(summary + (n - cnt));
        }
    }
    println!("{}", cands.iter().max().unwrap());
}
0