結果

問題 No.5002 stick xor
ユーザー GrayCoderGrayCoder
提出日時 2018-05-29 02:16:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 796 ms / 1,000 ms
コード長 1,534 bytes
コンパイル時間 27,263 ms
実行使用メモリ 6,016 KB
スコア 38,545
最終ジャッジ日時 2018-05-29 02:17:05
ジャッジサーバーID
(参考情報)
judge9 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 769 ms
6,012 KB
testcase_01 AC 758 ms
6,016 KB
testcase_02 AC 796 ms
6,016 KB
testcase_03 AC 763 ms
6,012 KB
testcase_04 AC 763 ms
6,016 KB
testcase_05 AC 736 ms
6,012 KB
testcase_06 AC 746 ms
6,008 KB
testcase_07 AC 760 ms
6,016 KB
testcase_08 AC 767 ms
6,012 KB
testcase_09 AC 754 ms
6,016 KB
testcase_10 AC 778 ms
6,016 KB
testcase_11 AC 787 ms
6,016 KB
testcase_12 AC 756 ms
6,016 KB
testcase_13 AC 758 ms
6,012 KB
testcase_14 AC 738 ms
6,016 KB
testcase_15 AC 728 ms
6,016 KB
testcase_16 AC 737 ms
6,016 KB
testcase_17 AC 732 ms
6,012 KB
testcase_18 AC 742 ms
6,012 KB
testcase_19 AC 730 ms
6,012 KB
testcase_20 AC 723 ms
6,012 KB
testcase_21 AC 737 ms
6,016 KB
testcase_22 AC 730 ms
6,016 KB
testcase_23 AC 736 ms
6,012 KB
testcase_24 AC 724 ms
6,012 KB
testcase_25 AC 725 ms
6,008 KB
testcase_26 AC 744 ms
6,016 KB
testcase_27 AC 755 ms
6,012 KB
testcase_28 AC 736 ms
6,016 KB
testcase_29 AC 740 ms
6,016 KB
testcase_30 AC 733 ms
6,008 KB
testcase_31 AC 725 ms
6,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    grid = [[0] * (N + 2)]
    apnd = grid.append
    for n in A:
        apnd([0] + n + [0])
    apnd([0] * (N + 2))

    for i, l in enumerate(L):
        if i < 250:
            case1 = search(l, grid)
            _, row1, col1, row2, col2 = case1
            line = grid[row1][col1:col2]
            grid[row1][col1:col2] = list(map(lambda x: int(not x), line))
            print(row1, col1, row2, col2 - 1)
        else:
            if i == 250:
                grid = list(map(list, zip(*grid)))
            case2 = search(l, grid)
            _, row1, col1, row2, col2 = case2
            line = grid[row1][col1:col2]
            grid[row1][col1:col2] = list(map(lambda x: int(not x), line))
            row1, col1 = col1, row1
            row2, col2 = col2, row2
            print(row1, col1, row2 - 1, col2)

def search(l, grid):
    maxb = -1
    for i in range(1, N + 1):
        for j in range(1, N + 2 - l):
            black = grid[i][j:j+l].count(1)
            if l == black == 1:
                if grid[i][j-1] == grid[i][j+1] == grid[i-1][j] == grid[i+1][j] == 0:
                    return (1, i, j, i, j + 1)
            elif black == l and grid[i][j-1] == grid[i][j+l] == 0:
                maxb = black
                ret = (maxb, i, j, i, j + l)
            elif maxb < black:
                maxb = black
                ret = (maxb, i, j, i, j + l)
    return ret

N, K = map(int, input().split())
L = tuple(map(int, input().split()))
A = [list(map(int, list(input()))) for _ in [0] * N]
main()
0