結果
問題 | No.2946 Puyo |
ユーザー | ooaiu |
提出日時 | 2024-11-12 16:32:50 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 70 ms / 2,000 ms |
コード長 | 1,513 bytes |
コンパイル時間 | 29,093 ms |
コンパイル使用メモリ | 401,428 KB |
実行使用メモリ | 11,904 KB |
最終ジャッジ日時 | 2024-11-12 16:33:24 |
合計ジャッジ時間 | 17,462 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 70 ms
11,776 KB |
testcase_04 | AC | 63 ms
11,904 KB |
testcase_05 | AC | 63 ms
11,904 KB |
testcase_06 | AC | 63 ms
11,776 KB |
testcase_07 | AC | 62 ms
11,904 KB |
testcase_08 | AC | 5 ms
5,248 KB |
testcase_09 | AC | 21 ms
5,248 KB |
testcase_10 | AC | 5 ms
5,248 KB |
testcase_11 | AC | 32 ms
7,040 KB |
testcase_12 | AC | 6 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 8 ms
5,248 KB |
testcase_15 | AC | 4 ms
5,248 KB |
testcase_16 | AC | 10 ms
5,248 KB |
testcase_17 | AC | 34 ms
7,424 KB |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 18 ms
5,248 KB |
testcase_20 | AC | 22 ms
5,248 KB |
testcase_21 | AC | 37 ms
6,912 KB |
testcase_22 | AC | 5 ms
5,248 KB |
testcase_23 | AC | 29 ms
5,248 KB |
testcase_24 | AC | 64 ms
8,192 KB |
testcase_25 | AC | 56 ms
7,296 KB |
testcase_26 | AC | 69 ms
7,936 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 21 ms
7,808 KB |
testcase_29 | AC | 29 ms
9,728 KB |
testcase_30 | AC | 17 ms
6,528 KB |
testcase_31 | AC | 25 ms
8,320 KB |
testcase_32 | AC | 26 ms
7,936 KB |
testcase_33 | AC | 25 ms
7,040 KB |
testcase_34 | AC | 38 ms
9,344 KB |
testcase_35 | AC | 31 ms
7,936 KB |
testcase_36 | AC | 37 ms
8,320 KB |
testcase_37 | AC | 39 ms
8,832 KB |
testcase_38 | AC | 29 ms
6,784 KB |
testcase_39 | AC | 30 ms
6,528 KB |
testcase_40 | AC | 19 ms
5,248 KB |
testcase_41 | AC | 40 ms
8,320 KB |
testcase_42 | AC | 36 ms
7,552 KB |
testcase_43 | AC | 21 ms
8,704 KB |
testcase_44 | AC | 25 ms
10,368 KB |
testcase_45 | AC | 20 ms
7,936 KB |
testcase_46 | AC | 12 ms
5,248 KB |
testcase_47 | AC | 18 ms
6,912 KB |
コンパイルメッセージ
warning: unused variable: `cc` --> src/main.rs:22:21 | 22 | let mut cc = 0; | ^^ help: if this is intentional, prefix it with an underscore: `_cc` | = note: `#[warn(unused_variables)]` on by default warning: variable does not need to be mutable --> src/main.rs:22:17 | 22 | let mut cc = 0; | ----^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default warning: type alias `Map` is never used --> src/main.rs:5:6 | 5 | type Map<K, V> = BTreeMap<K, V>; | ^^^ | = note: `#[warn(dead_code)]` on by default warning: type alias `Set` is never used --> src/main.rs:6:6 | 6 | type Set<T> = BTreeSet<T>; | ^^^
ソースコード
use proconio::{input, marker::Chars}; use std::collections::*; type Map<K, V> = BTreeMap<K, V>; type Set<T> = BTreeSet<T>; type Deque<T> = VecDeque<T>; fn main() { input! { h: usize, w: usize, g: [Chars; h] } let mut seen = vec![vec![false; w]; h]; let mut ans = vec![vec!['$'; w]; h]; for i in 0..h { for j in 0..w { if seen[i][j] || g[i][j] == '.' { continue; } let mut cc = 0; let mut que = Deque::new(); que.push_back((i, j)); let mut his = Vec::new(); while let Some((x, y)) = que.pop_front() { for &(dx, dy) in [(0, 1), (1, 0), (0, !0), (!0, 0)].iter() { let (x, y) = (x + dx, y + dy); if x < h && y < w { if !seen[x][y] && g[x][y] == g[i][j] { seen[x][y] = true; his.push((x, y)); que.push_back((x, y)); } } } } if his.len() >= 4 { while let Some((x, y)) = his.pop() { ans[x][y] = '.'; } } } } for i in 0..h { for j in 0..w { if ans[i][j] == '$' { ans[i][j] = g[i][j]; } } } for i in 0..h { println!("{}", ans[i].iter().collect::<String>()); } }