結果

問題 No.307 最近色塗る問題多くない?
ユーザー nebukuro09nebukuro09
提出日時 2016-10-03 15:03:42
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 767 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 36,040 KB
最終ジャッジ日時 2024-11-21 15:13:57
合計ジャッジ時間 62,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 3,860 ms
11,648 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 WA -
testcase_28 TLE -
testcase_29 WA -
testcase_30 TLE -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

dr = [0, 0, 1, -1]
dc = [1, -1, 0, 0]

H, W = map(int, raw_input().split())
board = [map(int, raw_input().split()) for _ in xrange(H)]
Q = input()
queries = [map(int, raw_input().split()) for _ in xrange(Q)]

def dfs(r, c, color):
    visited = set()
    stack = [(r, c)]
    while len(stack) > 0:
        r, c = stack.pop()
        if (r, c) in visited or board[r][c] == color:
            continue
        visited.add((r, c))
        board[r][c] = color
        for i in xrange(4):
            nr, nc = r+dr[i], c+dc[i]
            if nr < 0 or nr >= H or nc < 0 or nc >= W or (nr, nc) in visited:
                continue
            stack.append((nr, nc))

for q in queries:
    dfs(q[0]-1, q[1]-1, q[2])
for i in xrange(H):
    print ''.join(map(str, board[i]))
0