結果

問題 No.307 最近色塗る問題多くない?
ユーザー nebukuro09nebukuro09
提出日時 2016-10-03 15:08:37
言語 PyPy2
(7.3.15)
結果
MLE  
実行時間 -
コード長 953 bytes
コンパイル時間 1,829 ms
コンパイル使用メモリ 76,040 KB
実行使用メモリ 267,664 KB
最終ジャッジ日時 2024-11-21 15:16:02
合計ジャッジ時間 31,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
155,644 KB
testcase_01 AC 85 ms
74,752 KB
testcase_02 AC 85 ms
75,008 KB
testcase_03 AC 83 ms
75,008 KB
testcase_04 AC 156 ms
78,080 KB
testcase_05 AC 86 ms
74,496 KB
testcase_06 AC 95 ms
77,440 KB
testcase_07 AC 155 ms
78,848 KB
testcase_08 AC 309 ms
95,232 KB
testcase_09 AC 183 ms
83,516 KB
testcase_10 AC 157 ms
78,848 KB
testcase_11 AC 156 ms
80,128 KB
testcase_12 AC 84 ms
75,008 KB
testcase_13 AC 155 ms
82,304 KB
testcase_14 AC 114 ms
77,824 KB
testcase_15 AC 118 ms
77,952 KB
testcase_16 AC 120 ms
77,824 KB
testcase_17 AC 276 ms
88,996 KB
testcase_18 AC 707 ms
125,132 KB
testcase_19 AC 569 ms
111,460 KB
testcase_20 AC 95 ms
78,080 KB
testcase_21 AC 407 ms
96,880 KB
testcase_22 AC 437 ms
112,328 KB
testcase_23 MLE -
testcase_24 AC 1,207 ms
143,160 KB
testcase_25 AC 1,921 ms
233,576 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 296 ms
98,984 KB
testcase_29 AC 120 ms
80,656 KB
testcase_30 MLE -
testcase_31 AC 1,665 ms
84,228 KB
testcase_32 AC 165 ms
83,484 KB
testcase_33 AC 111 ms
79,988 KB
testcase_34 AC 300 ms
83,528 KB
testcase_35 AC 331 ms
92,416 KB
権限があれば一括ダウンロードができます

ソースコード

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])
    if all(all(board[0][0]==board[i][j] for j in xrange(W)) for i in xrange(H)):
        for i in xrange(H):
            print ' '.join([str(queries[-1][2])]*W)
        exit()
        
for i in xrange(H):
    print ' '.join(map(str, board[i]))
0