結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 63 ms
67,072 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 46 ms
60,032 KB
testcase_07 AC 102 ms
76,684 KB
testcase_08 AC 152 ms
77,896 KB
testcase_09 AC 112 ms
77,184 KB
testcase_10 AC 100 ms
77,080 KB
testcase_11 AC 109 ms
77,296 KB
testcase_12 AC 40 ms
52,736 KB
testcase_13 AC 98 ms
76,156 KB
testcase_14 AC 65 ms
73,088 KB
testcase_15 AC 72 ms
76,288 KB
testcase_16 AC 71 ms
76,544 KB
testcase_17 AC 116 ms
77,312 KB
testcase_18 AC 203 ms
79,788 KB
testcase_19 AC 186 ms
79,348 KB
testcase_20 AC 57 ms
65,280 KB
testcase_21 AC 153 ms
77,176 KB
testcase_22 AC 149 ms
77,948 KB
testcase_23 AC 827 ms
110,976 KB
testcase_24 AC 355 ms
81,876 KB
testcase_25 AC 504 ms
89,216 KB
testcase_26 AC 1,016 ms
113,132 KB
testcase_27 AC 114 ms
77,204 KB
testcase_28 AC 153 ms
78,444 KB
testcase_29 AC 86 ms
76,232 KB
testcase_30 AC 942 ms
116,268 KB
testcase_31 AC 150 ms
78,152 KB
testcase_32 AC 131 ms
77,696 KB
testcase_33 AC 80 ms
76,756 KB
testcase_34 AC 118 ms
77,568 KB
testcase_35 AC 126 ms
77,772 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