結果
問題 | No.2948 move move rotti |
ユーザー | とろちゃ |
提出日時 | 2024-10-25 21:53:12 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,112 bytes |
コンパイル時間 | 14,315 ms |
コンパイル使用メモリ | 402,336 KB |
実行使用メモリ | 14,140 KB |
最終ジャッジ日時 | 2024-10-25 21:53:34 |
合計ジャッジ時間 | 20,194 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
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 | -- | - |
ソースコード
use proconio::marker::Usize1; use proconio::*; fn main() { input! { n: usize, m: usize, k: usize, x: [Usize1; k], edges: [(Usize1, Usize1); m], } let mut graph = vec![vec![]; n]; for (a, b) in edges { graph[a].push(b); graph[b].push(a); } let mut v = vec![]; for i in 0..k { v.push(dfs(x[i], &mut vec![x[i]], &graph, &mut vec![(x[i], 1)])); } for i in v[0].iter() { let mut res = true; for j in 1..k { if !v[j].contains(&i) { res = false; break; } } if res { println!("{}", "Yes"); return; } } println!("{}", "No"); } fn dfs( v: usize, seen: &mut Vec<usize>, graph: &Vec<Vec<usize>>, ret: &mut Vec<(usize, usize)>, ) -> Vec<(usize, usize)> { for &i in &graph[v] { if seen.contains(&i) { continue; } seen.push(i); ret.push((i, seen.len())); dfs(i, seen, graph, ret); seen.pop(); } ret.clone() }