結果

問題 No.5002 stick xor
ユーザー GrayCoderGrayCoder
提出日時 2018-05-27 22:16:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 991 bytes
コンパイル時間 26,660 ms
実行使用メモリ 5,956 KB
スコア 34,558
最終ジャッジ日時 2018-05-27 22:16:38
ジャッジサーバーID
(参考情報)
judge8 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 802 ms
5,952 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 705 ms
5,956 KB
testcase_04 AC 699 ms
5,952 KB
testcase_05 AC 693 ms
5,952 KB
testcase_06 AC 707 ms
5,952 KB
testcase_07 AC 703 ms
5,956 KB
testcase_08 AC 715 ms
5,952 KB
testcase_09 AC 711 ms
5,952 KB
testcase_10 AC 717 ms
5,956 KB
testcase_11 AC 711 ms
5,952 KB
testcase_12 AC 704 ms
5,956 KB
testcase_13 AC 704 ms
5,952 KB
testcase_14 AC 694 ms
5,956 KB
testcase_15 AC 704 ms
5,952 KB
testcase_16 AC 699 ms
5,956 KB
testcase_17 AC 697 ms
5,952 KB
testcase_18 AC 698 ms
5,952 KB
testcase_19 AC 695 ms
5,952 KB
testcase_20 AC 692 ms
5,952 KB
testcase_21 AC 707 ms
5,952 KB
testcase_22 AC 732 ms
5,956 KB
testcase_23 AC 699 ms
5,956 KB
testcase_24 AC 684 ms
5,956 KB
testcase_25 AC 689 ms
5,956 KB
testcase_26 AC 708 ms
5,952 KB
testcase_27 AC 711 ms
5,952 KB
testcase_28 AC 716 ms
5,956 KB
testcase_29 AC 705 ms
5,956 KB
testcase_30 AC 694 ms
5,952 KB
testcase_31 AC 697 ms
5,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    for l in L:
        case1 = search(l, grid)
        _, row1, col1, row2, col2 = case1
        hline = grid[row1][col1:col2]
        grid[row1][col1:col2] = list(map(lambda x: int(not x), hline))
        print(row1, col1, row2, col2 - 1)

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:
                    maxb = black
                    ret = [maxb, i, j, i, j + l]
                    return ret
            if 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