結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | hama_du |
提出日時 | 2015-11-27 23:17:30 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 242 ms / 4,000 ms |
コード長 | 1,896 bytes |
コンパイル時間 | 12,631 ms |
コンパイル使用メモリ | 238,020 KB |
実行使用メモリ | 5,632 KB |
最終ジャッジ日時 | 2024-05-01 16:36:32 |
合計ジャッジ時間 | 15,815 ms |
ジャッジサーバーID (参考情報) |
judge2 / 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 | 1 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 20 ms
5,376 KB |
testcase_08 | AC | 117 ms
5,376 KB |
testcase_09 | AC | 59 ms
5,376 KB |
testcase_10 | AC | 21 ms
5,376 KB |
testcase_11 | AC | 50 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 12 ms
5,376 KB |
testcase_14 | AC | 10 ms
5,376 KB |
testcase_15 | AC | 15 ms
5,376 KB |
testcase_16 | AC | 11 ms
5,376 KB |
testcase_17 | AC | 56 ms
5,376 KB |
testcase_18 | AC | 103 ms
5,376 KB |
testcase_19 | AC | 118 ms
5,376 KB |
testcase_20 | AC | 8 ms
5,376 KB |
testcase_21 | AC | 125 ms
5,376 KB |
testcase_22 | AC | 124 ms
5,376 KB |
testcase_23 | AC | 211 ms
5,376 KB |
testcase_24 | AC | 145 ms
5,376 KB |
testcase_25 | AC | 167 ms
5,632 KB |
testcase_26 | AC | 231 ms
5,632 KB |
testcase_27 | AC | 125 ms
5,376 KB |
testcase_28 | AC | 132 ms
5,632 KB |
testcase_29 | AC | 8 ms
5,376 KB |
testcase_30 | AC | 242 ms
5,504 KB |
testcase_31 | AC | 131 ms
5,376 KB |
testcase_32 | AC | 129 ms
5,376 KB |
testcase_33 | AC | 118 ms
5,376 KB |
testcase_34 | AC | 129 ms
5,376 KB |
testcase_35 | AC | 131 ms
5,376 KB |
ソースコード
package main import ( "fmt" "bufio" "os" "strconv" "io" ) var dy = []int{0, -1, 0, 1} var dx = []int{1, 0, -1, 0} func main() { h := nextInt() w := nextInt() a := make([][]int, h) for i := 0 ; i < h ; i++ { a[i] = make([]int, w) for j := 0 ; j < w ; j++ { a[i][j] = nextInt() } } que := make([]int, 114514) all := false q := nextInt() final := -1 for i := 0 ; i < q ; i++ { r := nextInt()-1 c := nextInt()-1 x := nextInt() if all { final = x continue } if a[r][c] == x { continue } cnt := 1 a[r][c] = x qh := 0 qt := 0 que[qh] = r qh++ que[qh] = c qh++ for qt < qh { ny := que[qt] qt++ nx := que[qt] qt++ for d := 0 ; d < 4 ; d++ { ty := ny + dy[d] tx := nx + dx[d] if ty < 0 || ty >= h || tx < 0 || tx >= w { continue } if a[ty][tx] == x { continue } a[ty][tx] = x que[qh] = ty qh++ que[qh] = tx qh++ cnt++ } } if cnt >= h*w { all = true final = x } cnt++ } for i := 0; i < h; i++ { for j := 0; j < w; j++ { if j >= 1 { fmt.Printf(" ") } out := a[i][j] if final != -1 { out = final } fmt.Printf("%d", out) } fmt.Println() } } // ==== var rdr = bufio.NewReader(os.Stdin) func nextInt() int { i, e := strconv.Atoi(readToken(20)) if e != nil { panic(e) } return i } func nextString(limit int) string { return readToken(limit) } func readToken(limit int) string { buf := make([]byte, 0, limit) for { byte, err := rdr.ReadByte() if err != nil { if err == io.EOF { break } } if byte != 10 && byte != 13 && byte != 32 { buf = append(buf, byte) break } } for { byte, err := rdr.ReadByte() if err != nil { if err == io.EOF { break } } if byte == 10 || byte == 13 || byte == 32 { break } buf = append(buf, byte) } return string(buf) }