結果
問題 | No.179 塗り分け |
ユーザー | aru aru |
提出日時 | 2020-09-04 21:38:21 |
言語 | Go (1.23.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,104 bytes |
コンパイル時間 | 16,978 ms |
コンパイル使用メモリ | 229,488 KB |
実行使用メモリ | 8,032 KB |
最終ジャッジ日時 | 2024-11-26 12:11:55 |
合計ジャッジ時間 | 13,450 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 5 ms
7,708 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | WA | - |
testcase_08 | AC | 30 ms
7,952 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 25 ms
7,968 KB |
testcase_13 | AC | 1 ms
6,820 KB |
testcase_14 | AC | 1 ms
6,816 KB |
testcase_15 | AC | 1 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 26 ms
7,964 KB |
testcase_21 | AC | 30 ms
8,000 KB |
testcase_22 | AC | 30 ms
8,032 KB |
testcase_23 | AC | 1 ms
6,816 KB |
testcase_24 | AC | 31 ms
7,972 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | WA | - |
testcase_27 | AC | 37 ms
7,968 KB |
testcase_28 | WA | - |
testcase_29 | AC | 40 ms
7,964 KB |
testcase_30 | WA | - |
testcase_31 | AC | 41 ms
7,964 KB |
testcase_32 | AC | 17 ms
7,964 KB |
testcase_33 | AC | 39 ms
7,964 KB |
testcase_34 | WA | - |
testcase_35 | AC | 41 ms
7,960 KB |
testcase_36 | AC | 1 ms
6,820 KB |
testcase_37 | AC | 1 ms
6,820 KB |
testcase_38 | AC | 1 ms
6,816 KB |
testcase_39 | AC | 1 ms
6,816 KB |
testcase_40 | AC | 2 ms
6,816 KB |
testcase_41 | AC | 2 ms
6,816 KB |
testcase_42 | AC | 2 ms
6,816 KB |
testcase_43 | AC | 2 ms
6,816 KB |
testcase_44 | AC | 6 ms
7,704 KB |
testcase_45 | AC | 2 ms
6,820 KB |
ソースコード
package mainimport ("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 intvar s []stringvar tot intfunc 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, ybx, by := x+dx, y+dyif 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] = 1r++}}}}// 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")}