結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | phspls |
提出日時 | 2022-09-23 20:14:30 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,000 bytes |
コンパイル時間 | 14,122 ms |
コンパイル使用メモリ | 381,828 KB |
実行使用メモリ | 90,976 KB |
最終ジャッジ日時 | 2024-06-01 18:31:19 |
合計ジャッジ時間 | 24,253 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,884 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 623 ms
74,500 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 465 ms
54,068 KB |
testcase_07 | TLE | - |
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 | -- | - |
ソースコード
use std::collections::{BTreeSet, HashMap}; fn dfs(u: usize, paths: &Vec<Vec<usize>>, result: &mut Vec<usize>, checked: &mut Vec<bool>) -> usize { if u == 0 { return 0; } if result[u] > 0 { return result[u]; } checked[u] = true; let mut ret = u; for &v in paths[u].iter() { if checked[v] { continue; } ret = ret.max(dfs(v, paths, result, checked)); } result[u] = ret; ret } fn main() { let mut n = String::new(); std::io::stdin().read_line(&mut n).ok(); let n: usize = n.trim().parse().unwrap(); let mut x = String::new(); std::io::stdin().read_line(&mut x).ok(); let x: Vec<isize> = x.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let mut a = String::new(); std::io::stdin().read_line(&mut a).ok(); let a: Vec<isize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let mut pointset = BTreeSet::new(); for i in 0..n { pointset.insert(x[i]); pointset.insert(x[i]-a[i]); pointset.insert(x[i]+a[i]); } let mut mapping = HashMap::new(); let mut revmap = HashMap::new(); for (i, &v) in pointset.iter().enumerate() { mapping.insert(v, i); revmap.insert(i, v); } let mut paths = vec![vec![]; pointset.len()]; for i in 0..n { let src = *mapping.get(&x[i]).unwrap(); let left = *mapping.get(&(x[i] - a[i])).unwrap(); let right = *mapping.get(&(x[i] + a[i])).unwrap(); paths[src].push(left); paths[src].push(right); } let mut result = vec![0usize; pointset.len()]; for i in 0..n { let src = x[i]; let i = *mapping.get(&x[i]).unwrap(); if result[i] != 0 { println!("{}", *revmap.get(&result[i]).unwrap() - src); continue; } let mut checked = vec![false; pointset.len()]; dfs(i, &paths, &mut result, &mut checked); println!("{}", *revmap.get(&result[i]).unwrap() - src); } }