結果

問題 No.307 最近色塗る問題多くない?
ユーザー convexineqconvexineq
提出日時 2021-01-13 04:33:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,139 ms / 4,000 ms
コード長 821 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 116,328 KB
最終ジャッジ日時 2024-05-01 14:09:04
合計ジャッジ時間 9,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 56 ms
66,688 KB
testcase_05 AC 38 ms
52,736 KB
testcase_06 AC 43 ms
59,904 KB
testcase_07 AC 95 ms
77,056 KB
testcase_08 AC 144 ms
78,148 KB
testcase_09 AC 105 ms
77,056 KB
testcase_10 AC 91 ms
77,312 KB
testcase_11 AC 100 ms
76,936 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 91 ms
76,268 KB
testcase_14 AC 61 ms
72,576 KB
testcase_15 AC 68 ms
76,224 KB
testcase_16 AC 68 ms
76,436 KB
testcase_17 AC 110 ms
77,184 KB
testcase_18 AC 211 ms
80,032 KB
testcase_19 AC 193 ms
79,616 KB
testcase_20 AC 54 ms
65,280 KB
testcase_21 AC 147 ms
77,176 KB
testcase_22 AC 172 ms
78,080 KB
testcase_23 AC 938 ms
110,720 KB
testcase_24 AC 396 ms
82,108 KB
testcase_25 AC 551 ms
89,204 KB
testcase_26 AC 1,139 ms
113,608 KB
testcase_27 AC 110 ms
77,148 KB
testcase_28 AC 148 ms
78,592 KB
testcase_29 AC 80 ms
75,904 KB
testcase_30 AC 1,038 ms
116,328 KB
testcase_31 AC 144 ms
78,336 KB
testcase_32 AC 128 ms
77,736 KB
testcase_33 AC 75 ms
77,184 KB
testcase_34 AC 106 ms
77,184 KB
testcase_35 AC 119 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bfs(i,j,x):
    global cnt0
    if b[i][j]==x: return
    c = 0
    b[i][j] = x
    q = [(i,j)]
    while q:
        vi,vj = q.pop()
        c += 1
        for ni,nj in [(vi-1,vj),(vi+1,vj),(vi,vj-1),(vi,vj+1)]:
            if 0 <= ni < h and 0 <= nj < w and b[ni][nj] != x:
                b[ni][nj] = x
                q.append((ni,nj))
    cnt0 += c if x==0 else -c
    return

h,w = map(int,input().split())
b = [list(map(int,input().split())) for _ in range(h)]
cnt0 = 0
for i in range(h):
    for j in range(w):
        if b[i][j]==0: cnt0 += 1

q = int(input())
for _ in range(q):
    r,c,x = map(int,input().split())
    if cnt0 != 0 and cnt0 != h*w:
        bfs(r-1,c-1,x)

if cnt0 in [0,h*w]:
    for i in range(h):
        for j in range(w):
            b[i][j] = x
    
for i in range(h):
    print(*b[i])
0