結果
問題 | No.1170 Never Want to Walk |
ユーザー | taba |
提出日時 | 2024-08-06 10:02:34 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,401 bytes |
コンパイル時間 | 14,741 ms |
コンパイル使用メモリ | 402,128 KB |
実行使用メモリ | 409,072 KB |
最終ジャッジ日時 | 2024-08-06 10:03:00 |
合計ジャッジ時間 | 22,700 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,884 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | AC | 3 ms
6,940 KB |
testcase_14 | AC | 3 ms
6,944 KB |
testcase_15 | AC | 3 ms
6,940 KB |
testcase_16 | AC | 3 ms
6,940 KB |
testcase_17 | AC | 3 ms
6,940 KB |
testcase_18 | AC | 3 ms
6,944 KB |
testcase_19 | AC | 3 ms
6,944 KB |
testcase_20 | AC | 3 ms
6,944 KB |
testcase_21 | AC | 3 ms
6,944 KB |
testcase_22 | AC | 41 ms
6,944 KB |
testcase_23 | AC | 11 ms
6,944 KB |
testcase_24 | AC | 43 ms
6,940 KB |
testcase_25 | AC | 42 ms
6,944 KB |
testcase_26 | AC | 25 ms
6,944 KB |
testcase_27 | AC | 497 ms
15,096 KB |
testcase_28 | AC | 449 ms
14,992 KB |
testcase_29 | AC | 426 ms
15,292 KB |
testcase_30 | AC | 451 ms
15,372 KB |
testcase_31 | AC | 410 ms
14,896 KB |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
コンパイルメッセージ
warning: unused imports: `HashMap`, `HashSet` --> src/main.rs:1:34 | 1 | use std::collections::{BTreeSet, HashMap, HashSet}; | ^^^^^^^ ^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
ソースコード
use std::collections::{BTreeSet, HashMap, HashSet}; fn main() { proconio::input! { n: usize, a: i64, b: i64, x: [i64; n], } let x = x.into_iter().enumerate().collect::<Vec<_>>(); let mut mushozoku = x.iter().copied().collect::<BTreeSet<_>>(); let mut groups = vec![]; loop { let Some(station) = mushozoku.pop_first() else { break; }; let mut stations = BTreeSet::new(); stations.insert(station); let mut group = BTreeSet::new(); group.insert(station); while !stations.is_empty() { let Some(station) = stations.pop_first() else { break; }; let first = x.partition_point(|x| x.1 < station.1 + a); let last = x.partition_point(|x| x.1 <= station.1 + b); // eprintln!( // "plus {station:?}: {} {}, {:?}, {}", // first, // last, // &x[first..last], // stations.len() // ); let append = x[first..last] .iter() .copied() .filter(|x| !group.contains(x)) .inspect(|x| { stations.insert(*x); mushozoku.remove(x); }) .collect::<Vec<_>>(); group.extend(append); let first = x.partition_point(|x| x.1 < station.1 - b); let last = x.partition_point(|x| x.1 <= station.1 - a); // eprintln!( // "minus {station:?}: {} {} {:?}, {}", // first, // last, // &x[first..last], // stations.len() // ); let append = x[first..last] .iter() .copied() .filter(|x| !group.contains(x)) .inspect(|x| { stations.insert(*x); mushozoku.remove(x); }) .collect::<Vec<_>>(); group.extend(append); } groups.push(group); } //eprintln!("{:?}", groups); let mut v = vec![u64::MAX; n]; for group in groups { for station in group.iter() { v[station.0] = group.len() as u64; } } for i in 0..n { println!("{}", v[i]); } }