結果

問題 No.5002 stick xor
ユーザー GrayCoderGrayCoder
提出日時 2018-05-31 21:08:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 826 ms / 1,000 ms
コード長 1,537 bytes
コンパイル時間 25,922 ms
実行使用メモリ 6,000 KB
スコア 39,765
最終ジャッジ日時 2018-05-31 21:08:51
ジャッジサーバーID
(参考情報)
judge7 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 701 ms
5,996 KB
testcase_01 AC 675 ms
5,996 KB
testcase_02 AC 826 ms
5,996 KB
testcase_03 AC 686 ms
6,000 KB
testcase_04 AC 744 ms
5,996 KB
testcase_05 AC 670 ms
6,000 KB
testcase_06 AC 741 ms
5,996 KB
testcase_07 AC 686 ms
6,000 KB
testcase_08 AC 764 ms
5,996 KB
testcase_09 AC 696 ms
6,000 KB
testcase_10 AC 760 ms
6,000 KB
testcase_11 AC 685 ms
5,996 KB
testcase_12 AC 750 ms
5,996 KB
testcase_13 AC 688 ms
5,996 KB
testcase_14 AC 749 ms
6,000 KB
testcase_15 AC 665 ms
5,996 KB
testcase_16 AC 748 ms
6,000 KB
testcase_17 AC 687 ms
5,996 KB
testcase_18 AC 762 ms
5,996 KB
testcase_19 AC 685 ms
6,000 KB
testcase_20 AC 729 ms
6,000 KB
testcase_21 AC 667 ms
5,992 KB
testcase_22 AC 753 ms
5,996 KB
testcase_23 AC 686 ms
5,992 KB
testcase_24 AC 728 ms
5,996 KB
testcase_25 AC 685 ms
6,000 KB
testcase_26 AC 788 ms
5,996 KB
testcase_27 AC 694 ms
5,996 KB
testcase_28 AC 744 ms
5,996 KB
testcase_29 AC 687 ms
5,992 KB
testcase_30 AC 729 ms
5,996 KB
testcase_31 AC 683 ms
6,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    for l in L:
        case1 = search1(l, grid)
        grid = list(map(list, zip(*grid)))
        case2 = search1(l, grid)

        if case1[0] >= case2[0] or l == 1:
            grid = list(map(list, zip(*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:
            _, 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
            grid = list(map(list, zip(*grid)))
            print(row1, col1, row2 - 1, col2)

def search1(l, grid):
    max1 = 0
    for i in range(1, N + 1):
        cnt = 0
        for j in range(1, N + 1):
            if grid[i][j]:
                cnt += 1
            if j >= l:
                col1 = (j - l) + 1
                cnt -= grid[i][j-l]
                if max1 <= cnt:
                    range_ = (max1, i, col1, i, col1 + l)
                    max1 = cnt
                if cnt == l and not grid[i][col1-1] and not grid[i][col1+l]:
                    return range_
    return range_

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