結果
問題 | No.2542 Yokan for Two |
ユーザー | titia |
提出日時 | 2023-11-24 22:25:56 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,270 bytes |
コンパイル時間 | 14,879 ms |
コンパイル使用メモリ | 377,976 KB |
実行使用メモリ | 61,632 KB |
最終ジャッジ日時 | 2024-09-26 09:32:32 |
合計ジャッジ時間 | 17,946 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1,193 ms
59,648 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
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 | -- | - |
ソースコード
use std::collections::HashSet; use std::cmp::min; fn main() { let mut input_line = String::new(); std::io::stdin().read_line(&mut input_line).unwrap(); let mut iter = input_line.split_whitespace(); let l: i64 = iter.next().unwrap().parse().unwrap(); let n: i64 = iter.next().unwrap().parse().unwrap(); input_line.clear(); std::io::stdin().read_line(&mut input_line).unwrap(); let x: Vec<i64> = vec![0] .into_iter() .chain(input_line.split_whitespace().map(|s| s.parse().unwrap())) .chain(vec![l].into_iter()) .collect(); let mut dp = HashSet::new(); dp.insert((0, 0, 0)); for i in 1..=n+1 { let mut ndp = HashSet::new(); for &(ind, d, com) in dp.iter() { if com == 0 { ndp.insert((i, d + x[i as usize] - x[ind as usize], 1)); } else { ndp.insert((i, d - (x[i as usize] - x[ind as usize]), 0)); } } if i != n + 1 { dp = ndp.union(&dp).cloned().collect(); } else { dp = ndp; } } let mut ans = i64::MAX; for &(_, d, com) in dp.iter() { if com == 0 { ans = min(ans, d.abs()); } } println!("{}", ans); }