結果

問題 No.2946 Puyo
ユーザー NakLon131NakLon131
提出日時 2024-10-26 09:14:32
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 1,771 bytes
コンパイル時間 12,486 ms
コンパイル使用メモリ 400,796 KB
実行使用メモリ 67,076 KB
最終ジャッジ日時 2024-10-26 09:14:55
合計ジャッジ時間 19,606 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 AC 340 ms
66,948 KB
testcase_04 AC 346 ms
67,076 KB
testcase_05 AC 337 ms
67,008 KB
testcase_06 AC 342 ms
67,028 KB
testcase_07 AC 333 ms
67,064 KB
testcase_08 AC 19 ms
6,820 KB
testcase_09 AC 91 ms
19,252 KB
testcase_10 AC 14 ms
6,820 KB
testcase_11 AC 153 ms
34,640 KB
testcase_12 AC 18 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 26 ms
6,816 KB
testcase_15 AC 12 ms
6,824 KB
testcase_16 AC 44 ms
10,596 KB
testcase_17 AC 142 ms
22,204 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 47 ms
8,160 KB
testcase_20 AC 63 ms
12,204 KB
testcase_21 AC 118 ms
21,332 KB
testcase_22 AC 14 ms
6,820 KB
testcase_23 AC 55 ms
8,756 KB
testcase_24 AC 144 ms
23,276 KB
testcase_25 AC 115 ms
15,492 KB
testcase_26 AC 131 ms
16,436 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 58 ms
10,240 KB
testcase_29 AC 86 ms
13,696 KB
testcase_30 AC 45 ms
8,320 KB
testcase_31 AC 68 ms
11,648 KB
testcase_32 AC 72 ms
12,064 KB
testcase_33 AC 66 ms
11,296 KB
testcase_34 AC 97 ms
16,196 KB
testcase_35 AC 87 ms
14,064 KB
testcase_36 AC 93 ms
14,424 KB
testcase_37 AC 113 ms
17,508 KB
testcase_38 AC 83 ms
14,640 KB
testcase_39 AC 86 ms
14,324 KB
testcase_40 AC 61 ms
12,248 KB
testcase_41 AC 132 ms
23,280 KB
testcase_42 AC 131 ms
22,464 KB
testcase_43 AC 60 ms
9,600 KB
testcase_44 AC 70 ms
11,392 KB
testcase_45 AC 57 ms
9,856 KB
testcase_46 AC 35 ms
6,816 KB
testcase_47 AC 54 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    input!{
		h: usize, w: usize,
		g: [Chars; h],
	}

	// 先頭座標-連結成分の個数 を管理
	let mut mp = HashMap::new();

	// 探索の先頭座標を入れる
	let mut seen = vec![vec![INF; w]; h];

	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,
};
0