結果

問題 No.2946 Puyo
ユーザー ID 21712ID 21712
提出日時 2024-11-02 15:16:26
言語 Go
(1.22.1)
結果
AC  
実行時間 1,187 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 11,441 ms
コンパイル使用メモリ 238,988 KB
実行使用メモリ 39,788 KB
最終ジャッジ日時 2024-11-02 15:17:06
合計ジャッジ時間 38,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1,181 ms
39,780 KB
testcase_04 AC 1,178 ms
39,784 KB
testcase_05 AC 1,173 ms
39,788 KB
testcase_06 AC 1,187 ms
39,780 KB
testcase_07 AC 1,169 ms
39,764 KB
testcase_08 AC 88 ms
7,856 KB
testcase_09 AC 370 ms
16,492 KB
testcase_10 AC 71 ms
7,744 KB
testcase_11 AC 585 ms
22,804 KB
testcase_12 AC 78 ms
7,860 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 125 ms
7,996 KB
testcase_15 AC 58 ms
6,816 KB
testcase_16 AC 193 ms
10,164 KB
testcase_17 AC 641 ms
25,016 KB
testcase_18 AC 12 ms
6,820 KB
testcase_19 AC 261 ms
12,336 KB
testcase_20 AC 334 ms
14,440 KB
testcase_21 AC 566 ms
22,740 KB
testcase_22 AC 74 ms
7,856 KB
testcase_23 AC 315 ms
14,432 KB
testcase_24 AC 718 ms
26,952 KB
testcase_25 AC 646 ms
24,880 KB
testcase_26 AC 701 ms
26,892 KB
testcase_27 AC 13 ms
6,816 KB
testcase_28 AC 537 ms
22,784 KB
testcase_29 AC 761 ms
24,980 KB
testcase_30 AC 414 ms
20,740 KB
testcase_31 AC 613 ms
25,064 KB
testcase_32 AC 640 ms
25,016 KB
testcase_33 AC 543 ms
22,972 KB
testcase_34 AC 819 ms
29,336 KB
testcase_35 AC 656 ms
25,032 KB
testcase_36 AC 695 ms
25,024 KB
testcase_37 AC 747 ms
27,012 KB
testcase_38 AC 548 ms
22,988 KB
testcase_39 AC 515 ms
22,916 KB
testcase_40 AC 333 ms
16,608 KB
testcase_41 AC 744 ms
29,124 KB
testcase_42 AC 674 ms
27,104 KB
testcase_43 AC 510 ms
22,768 KB
testcase_44 AC 655 ms
26,856 KB
testcase_45 AC 505 ms
20,712 KB
testcase_46 AC 315 ms
16,572 KB
testcase_47 AC 506 ms
22,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var h,w int
	Scan(&h,&w)
	f:=make([][]byte,h)
	m:=make([][]int,h)
	for i:=range f {
		var s string
		Scan(&s)
		f[i]=[]byte(s)
		m[i]=make([]int,w)
	}
	v:=0
	t:=make([]int,h*w+1)
	for r,rr:=range f {
		for c,cc := range rr {
			if m[r][c]!=0 {
				continue
			}
			v++
			st:=[]int{r*w+c}
			for len(st)>0 {
				e:=st[len(st)-1]
				st=st[:len(st)-1]
				x,y:=e%w,e/w
				if f[y][x]!=cc {
					continue
				}
				if m[y][x]!=0 {
					continue
				}
				m[y][x]=v
				t[v]++
				if y>0 {
					st=append(st,e-w)
				}
				if y+1<h {
					st=append(st,e+w)
				}
				if x>0 {
					st=append(st,e-1)
				}
				if x+1<w {
					st=append(st,e+1)
				}
			}
		}
	}
	for r,rr:=range f {
		for c:=range rr {
			if t[m[r][c]]>=4 {
				f[r][c]='.'
			}
		}
		Println(string(rr))
	}
	
}
0