結果

問題 No.307 最近色塗る問題多くない?
ユーザー chocoruskchocorusk
提出日時 2020-09-23 16:01:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,028 ms / 4,000 ms
コード長 1,082 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 144,264 KB
最終ジャッジ日時 2024-06-27 22:42:36
合計ジャッジ時間 8,542 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,680 KB
testcase_01 AC 37 ms
53,316 KB
testcase_02 AC 38 ms
52,528 KB
testcase_03 AC 37 ms
53,848 KB
testcase_04 AC 52 ms
64,916 KB
testcase_05 AC 38 ms
52,764 KB
testcase_06 AC 44 ms
61,036 KB
testcase_07 AC 76 ms
76,684 KB
testcase_08 AC 121 ms
83,584 KB
testcase_09 AC 86 ms
77,312 KB
testcase_10 AC 64 ms
70,708 KB
testcase_11 AC 66 ms
73,616 KB
testcase_12 AC 38 ms
53,072 KB
testcase_13 AC 66 ms
76,188 KB
testcase_14 AC 58 ms
69,448 KB
testcase_15 AC 60 ms
71,860 KB
testcase_16 AC 62 ms
71,308 KB
testcase_17 AC 106 ms
78,120 KB
testcase_18 AC 215 ms
86,056 KB
testcase_19 AC 187 ms
86,372 KB
testcase_20 AC 48 ms
62,856 KB
testcase_21 AC 158 ms
82,112 KB
testcase_22 AC 150 ms
86,852 KB
testcase_23 AC 942 ms
137,572 KB
testcase_24 AC 370 ms
87,300 KB
testcase_25 AC 513 ms
106,280 KB
testcase_26 AC 1,028 ms
144,264 KB
testcase_27 AC 68 ms
76,332 KB
testcase_28 AC 122 ms
83,760 KB
testcase_29 AC 52 ms
69,516 KB
testcase_30 AC 1,018 ms
143,560 KB
testcase_31 AC 84 ms
76,444 KB
testcase_32 AC 73 ms
76,192 KB
testcase_33 AC 67 ms
77,092 KB
testcase_34 AC 68 ms
76,092 KB
testcase_35 AC 79 ms
76,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read=sys.stdin.buffer.read
readline=sys.stdin.buffer.readline
readlines=sys.stdin.buffer.readlines

h, w=map(int, readline().split())
a=[]
cnt1=0
for i in range(h):
    ai=list(map(int, readline().split()))
    a.append(ai)
    cnt1+=sum(ai)
a0=-1
if cnt1==0 or cnt1==h*w:
    a0=0
q=int(readline())
for _ in range(q):
    r, c, x=map(int, readline().split())
    r-=1
    c-=1
    if a0!=-1:
        if (a[r][c]^a0)!=x:
            a0^=1
        continue
    if a[r][c]==x:
        continue
    que=[(r, c)]
    a[r][c]=x
    if x==1:
        cnt1+=1
    else:
        cnt1-=1
    for p in que:
        r0, c0=p[0], p[1]
        for dx, dy in [(1, 0), (-1, 0), (0, 1), (0, -1)]:
            r1, c1=r0+dx, c0+dy
            if r1<0 or r1>=h or c1<0 or c1>=w or a[r1][c1]==x:
                continue
            a[r1][c1]=x
            if x==1:
                cnt1+=1
            else:
                cnt1-=1
            que.append((r1, c1))
    if cnt1==0 or cnt1==h*w:
        a0=0
if a0==-1:a0=0
for i in range(h):
    print(' '.join(map(str, [x^a0 for x in a[i]])))
0