結果
問題 | No.1023 Cyclic Tour |
ユーザー | akakimidori |
提出日時 | 2020-04-10 22:49:30 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,841 bytes |
コンパイル時間 | 14,709 ms |
コンパイル使用メモリ | 377,200 KB |
実行使用メモリ | 16,384 KB |
最終ジャッジ日時 | 2024-09-15 23:06:06 |
合計ジャッジ時間 | 18,991 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 14 ms
5,888 KB |
testcase_05 | AC | 14 ms
5,888 KB |
testcase_06 | AC | 15 ms
6,400 KB |
testcase_07 | AC | 14 ms
6,016 KB |
testcase_08 | AC | 24 ms
10,496 KB |
testcase_09 | AC | 24 ms
10,240 KB |
testcase_10 | AC | 23 ms
10,240 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 25 ms
11,392 KB |
testcase_15 | WA | - |
testcase_16 | AC | 40 ms
16,256 KB |
testcase_17 | AC | 41 ms
16,384 KB |
testcase_18 | AC | 41 ms
16,128 KB |
testcase_19 | AC | 38 ms
15,744 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 32 ms
11,392 KB |
testcase_26 | AC | 32 ms
11,520 KB |
testcase_27 | AC | 31 ms
11,136 KB |
testcase_28 | AC | 37 ms
14,848 KB |
testcase_29 | AC | 38 ms
15,488 KB |
testcase_30 | AC | 38 ms
14,848 KB |
testcase_31 | AC | 35 ms
13,696 KB |
testcase_32 | AC | 37 ms
14,848 KB |
testcase_33 | AC | 38 ms
14,592 KB |
testcase_34 | AC | 20 ms
9,216 KB |
testcase_35 | AC | 23 ms
9,344 KB |
testcase_36 | WA | - |
testcase_37 | AC | 36 ms
13,568 KB |
testcase_38 | AC | 38 ms
14,848 KB |
testcase_39 | WA | - |
testcase_40 | AC | 36 ms
13,568 KB |
testcase_41 | AC | 35 ms
13,440 KB |
testcase_42 | AC | 32 ms
11,520 KB |
testcase_43 | AC | 36 ms
14,720 KB |
testcase_44 | AC | 15 ms
6,656 KB |
testcase_45 | AC | 34 ms
13,824 KB |
testcase_46 | AC | 34 ms
13,824 KB |
testcase_47 | AC | 13 ms
6,656 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | AC | 27 ms
11,008 KB |
testcase_51 | AC | 28 ms
11,264 KB |
testcase_52 | AC | 28 ms
11,392 KB |
ソースコード
//---------- begin union_find ---------- #[allow(dead_code)] mod union_find { pub struct UF { p: Vec<i32>, } impl UF { pub fn new(n: usize) -> UF { UF {p: vec![-1; n] } } pub fn init(&mut self) { for p in self.p.iter_mut() { *p = -1; } } pub fn root(&self, mut x: usize) -> usize { while self.p[x] >= 0 { x = self.p[x] as usize; } x } pub fn same(&self, x: usize, y: usize) -> bool { self.root(x) == self.root(y) } pub fn unite(&mut self, mut x: usize, mut y: usize) -> Option<(usize, usize)> { x = self.root(x); y = self.root(y); if x == y { return None; } if self.p[x] > self.p[y] { let s = x; x = y; y = s; } self.p[x] += self.p[y]; self.p[y] = x as i32; Some((x, y)) } pub fn get_size(&self, x: usize) -> usize { let r = self.root(x); (-self.p[r]) as usize } } } //---------- end union_find ---------- //https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 より macro_rules! input { (source = $s:expr, $($r:tt)*) => { let mut iter = $s.split_whitespace(); input_inner!{iter, $($r)*} }; ($($r:tt)*) => { let s = { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); s }; let mut iter = s.split_whitespace(); input_inner!{iter, $($r)*} }; } macro_rules! input_inner { ($iter:expr) => {}; ($iter:expr, ) => {}; ($iter:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($iter, $t); input_inner!{$iter $($r)*} }; } macro_rules! read_value { ($iter:expr, ( $($t:tt),* )) => { ( $(read_value!($iter, $t)),* ) }; ($iter:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>() }; ($iter:expr, chars) => { read_value!($iter, String).chars().collect::<Vec<char>>() }; ($iter:expr, usize1) => { read_value!($iter, usize) - 1 }; ($iter:expr, $t:ty) => { $iter.next().unwrap().parse::<$t>().expect("Parse error") }; } // fn run() { input! { n: usize, m: usize, e: [(usize1, usize1, usize); m], } let mut u = union_find::UF::new(n); for &(a, b, c) in e.iter() { if c == 1 { if u.unite(a, b).is_none() { println!("Yes"); return; } } } let mut id = vec![n; n]; let mut k = 0; for i in 0..n { let r = u.root(i); if id[r] == n { id[r] = k; k += 1; } } let mut graph = vec![vec![]; k]; for &(a, b, c) in e.iter() { if c == 2 { let a = u.root(a); let b = u.root(b); graph[id[a]].push(id[b]); } } let mut elem = vec![false; k]; for i in 0..k { if elem[i] { continue; } let mut q = std::collections::VecDeque::new(); elem[i] = true; q.push_back(i); while let Some(v) = q.pop_front() { for &u in graph[v].iter() { if elem[u] { println!("Yes"); return; } } for &u in graph[v].iter() { if !elem[u] { elem[u] = true; q.push_back(u); } } } } println!("No"); } fn main() { run(); }