結果

問題 No.755 Zero-Sum Rectangle
ユーザー AEnAEn
提出日時 2022-08-30 17:01:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,843 ms / 2,000 ms
コード長 2,215 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,384 KB
最終ジャッジ日時 2024-04-25 01:48:02
合計ジャッジ時間 17,777 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 58 ms
64,768 KB
testcase_02 AC 1,656 ms
76,936 KB
testcase_03 AC 1,642 ms
77,168 KB
testcase_04 AC 1,588 ms
76,888 KB
testcase_05 AC 1,599 ms
76,900 KB
testcase_06 AC 1,589 ms
76,500 KB
testcase_07 AC 1,590 ms
76,416 KB
testcase_08 AC 1,770 ms
76,748 KB
testcase_09 AC 1,843 ms
77,384 KB
testcase_10 AC 1,591 ms
76,620 KB
testcase_11 AC 47 ms
61,440 KB
evil_1 AC 1,666 ms
77,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    N, M = map(int, input().split())
    A = [list(map(int, input().split())) for _ in range(M)]
    ac = [[0]*(M+1) for _ in range(M+1)]
    z = 0
    for i in range(M):
        for j in range(M):
            ac[i][j] += A[i][j]
            ac[-1][-1] += A[i][j]
            ac[-1][j] -= A[i][j]
            ac[i][-1] -= A[i][j]
            if A[i][j] == 0:
                z += 1
    if z==M*M:
        for i in range(N):
            x, y = map(int, input().split())
            print(x*y*(M-x+1)*(M-y+1))
        exit()
    for i in range(M+1):
        for j in range(1, M+1):
            ac[i][j] += ac[i][j-1]
    for i in range(1, M+1):
        for j in range(M+1):
            ac[i][j] += ac[i-1][j]
    res = [[0]*(M+1) for _ in range(M+1)]
    for i in range(M):
        for j in range(M):
            num = A[i][j]
            for x in range(i, M):
                for y in range(j, M):
                    if i==0 and j==0 and ac[x][y]==0:
                        res[i][j] += 1
                        res[x+1][y+1] += 1
                        res[i][y+1] -= 1
                        res[x+1][j] -= 1
                    elif i==0 and ac[x][y]-ac[x][j-1]==0:
                        res[i][j] += 1
                        res[x+1][y+1] += 1
                        res[i][y+1] -= 1
                        res[x+1][j] -= 1
                    elif j==0 and ac[x][y]-ac[i-1][y]==0:
                        res[i][j] += 1
                        res[x+1][y+1] += 1
                        res[i][y+1] -= 1
                        res[x+1][j] -= 1
                    else:
                        if ac[x][y]-ac[i-1][y]-ac[x][j-1]+ac[i-1][j-1]==0:
                            res[i][j] += 1
                            res[x+1][y+1] += 1
                            res[i][y+1] -= 1
                            res[x+1][j] -= 1

    for i in range(M+1):
        for j in range(1, M+1):
            res[i][j] += res[i][j-1]
    for i in range(1, M+1):
        for j in range(M+1):
            res[i][j] += res[i-1][j]
    for i in range(N):
        x, y = map(int,input().split())
        print(res[x-1][y-1])
if __name__=='__main__':
    main()
0