結果
問題 | No.179 塗り分け |
ユーザー | aru aru |
提出日時 | 2020-09-04 21:38:21 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,104 bytes |
コンパイル時間 | 10,454 ms |
コンパイル使用メモリ | 239,788 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-05-04 21:50:30 |
合計ジャッジ時間 | 12,424 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 7 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 27 ms
6,272 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 23 ms
6,272 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 0 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 26 ms
6,528 KB |
testcase_21 | AC | 28 ms
6,272 KB |
testcase_22 | AC | 26 ms
6,272 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 27 ms
6,272 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 33 ms
6,256 KB |
testcase_28 | WA | - |
testcase_29 | AC | 37 ms
6,272 KB |
testcase_30 | WA | - |
testcase_31 | AC | 39 ms
6,272 KB |
testcase_32 | AC | 17 ms
6,144 KB |
testcase_33 | AC | 38 ms
6,272 KB |
testcase_34 | WA | - |
testcase_35 | AC | 38 ms
6,272 KB |
testcase_36 | AC | 1 ms
5,376 KB |
testcase_37 | AC | 1 ms
5,376 KB |
testcase_38 | AC | 1 ms
5,376 KB |
testcase_39 | AC | 1 ms
5,376 KB |
testcase_40 | AC | 1 ms
5,376 KB |
testcase_41 | AC | 1 ms
5,376 KB |
testcase_42 | AC | 1 ms
5,376 KB |
testcase_43 | AC | 2 ms
5,376 KB |
testcase_44 | AC | 7 ms
5,888 KB |
testcase_45 | AC | 1 ms
5,376 KB |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) func out(x ...interface{}) { fmt.Println(x...) } var sc = bufio.NewScanner(os.Stdin) func getInt() int { sc.Scan() i, e := strconv.Atoi(sc.Text()) if e != nil { panic(e) } return i } func getInts(N int) []int { ret := make([]int, N) for i := 0; i < N; i++ { ret[i] = getInt() } return ret } func getString() string { sc.Scan() return sc.Text() } // min, max, asub, absなど基本関数 func max(a, b int) int { if a > b { return a } return b } func min(a, b int) int { if a < b { return a } return b } func asub(a, b int) int { if a > b { return a - b } return b - a } func abs(a int) int { if a >= 0 { return a } return -a } func lowerBound(a []int, x int) int { idx := sort.Search(len(a), func(i int) bool { return a[i] >= x }) return idx } func upperBound(a []int, x int) int { idx := sort.Search(len(a), func(i int) bool { return a[i] > x }) return idx } var H, W int var s []string var tot int func match(dx, dy int) bool { u := make([][]int, H) for i := 0; i < H; i++ { u[i] = make([]int, W) } r, b := 0, 0 // out("------") for y := 0; y < H; y++ { for x := 0; x < W; x++ { rx, ry := x, y bx, by := x+dx, y+dy if bx >= W || by >= H { continue } if u[ry][rx] == 0 && s[ry][rx] == '#' { b++ if s[by][bx] == '#' { // out("x", by, bx) u[by][bx] = 1 r++ } } } } // for y := 0; y < H; y++ { // // for x := 0; x < W; x++ { // out(u[y]) // // } // } // out(r, b, tot) if r == b && r+b == tot { return true } return false } func main() { sc.Split(bufio.ScanWords) sc.Buffer([]byte{}, 1000000) H, W = getInt(), getInt() s = make([]string, H) for i := 0; i < H; i++ { s[i] = getString() } for y := 0; y < H; y++ { for x := 0; x < W; x++ { if s[y][x] == '#' { tot++ } } } for y := 0; y < H; y++ { for x := 0; x < W; x++ { if x == 0 && y == 0 { continue } ret := match(x, y) // out(x, y, ret) if ret == true { out("YES") return } } } out("NO") }