結果
問題 | No.1869 Doubling? |
ユーザー | phspls |
提出日時 | 2022-09-25 16:23:32 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,091 bytes |
コンパイル時間 | 11,086 ms |
コンパイル使用メモリ | 401,660 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-01 22:22:30 |
合計ジャッジ時間 | 19,904 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 489 ms
5,376 KB |
testcase_04 | AC | 1,567 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 0 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
ソースコード
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 = 0usize; while let Some((summary, cnt, last)) = deque.pop_front() { if cnt == n { cands = cands.max(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 = cands.max(summary + (n - cnt)); } if last * 2 - 1 <= m { deque.push_front((summary + last*2-1, cnt+1, last*2-1)); } else { cands = cands.max(summary + (n - cnt)); } } println!("{}", cands); }