結果
問題 | No.2946 Puyo |
ユーザー | NakLon131 |
提出日時 | 2024-10-26 09:13:54 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,771 bytes |
コンパイル時間 | 13,371 ms |
コンパイル使用メモリ | 402,176 KB |
実行使用メモリ | 67,020 KB |
最終ジャッジ日時 | 2024-10-26 09:14:14 |
合計ジャッジ時間 | 18,167 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 337 ms
67,004 KB |
testcase_04 | AC | 339 ms
66,956 KB |
testcase_05 | AC | 355 ms
67,020 KB |
testcase_06 | AC | 339 ms
66,960 KB |
testcase_07 | AC | 351 ms
66,948 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
ソースコード
fn main() { input!{ h: usize, w: usize, g: [Chars; h], } // 先頭座標-連結成分の個数 を管理 let mut mp = HashMap::new(); // 探索の先頭座標を入れる let mut seen = vec![vec![INF; h]; w]; let d = vec!{(!0, 0), (0, !0), (1, 0), (0, 1)}; // 上左下右 // 各マス試す for i in 0..h { for j in 0..w { if seen[i][j] != INF { continue; } // BFS { let mut cnt = 0; // 同じ色の個数 let mut dq = VecDeque::new(); dq.push_back((i, j)); seen[i][j] = i*w+j; cnt += 1; while dq.len() > 0 { let (ci, cj) = dq.pop_front().unwrap(); for k in 0..4 { let ni = ci.wrapping_add(d[k].0); let nj = cj.wrapping_add(d[k].1); if ni >= h || nj >= w || seen[ni][nj] != INF || g[ni][nj] != g[ci][cj] { continue; } seen[ni][nj] = i*w+j; dq.push_back((ni, nj)); cnt += 1; } } mp.insert(i*w+j, cnt); } } } // seenの値にある連結成分を確認して、4以上なら.にする。 let mut ans_g = g.clone(); for i in 0..h { for j in 0..w { let num = seen[i][j]; if *mp.get(&num).unwrap() >= 4 { ans_g[i][j] = '.'; } } } for i in 0..h { for j in 0..w { print!("{}", ans_g[i][j]); } println!(); } } // const MOD17: usize = 1000000007; // const MOD93: usize = 998244353; const INF: usize = 1 << 60; // let dx = vec![!0, 0, 1, 0]; // 上左下右 // let dy = vec![0, !0, 0, 1]; // 上左下右 #[allow(unused)] use proconio::{input, marker::Chars, marker::Usize1}; #[allow(unused)] use std::{ mem::swap, cmp::min, cmp::max, cmp::Reverse, collections::HashSet, collections::BTreeSet, collections::HashMap, collections::BTreeMap, collections::BinaryHeap, collections::VecDeque, iter::FromIterator, };