結果

問題 No.1074 増殖
ユーザー Kiri8128Kiri8128
提出日時 2020-05-17 16:15:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 1,409 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 93,224 KB
最終ジャッジ日時 2024-09-25 08:40:04
合計ジャッジ時間 6,088 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,096 KB
testcase_01 AC 42 ms
59,640 KB
testcase_02 AC 40 ms
60,004 KB
testcase_03 AC 42 ms
61,016 KB
testcase_04 AC 43 ms
60,244 KB
testcase_05 AC 50 ms
63,844 KB
testcase_06 AC 703 ms
93,224 KB
testcase_07 AC 309 ms
88,084 KB
testcase_08 AC 386 ms
89,924 KB
testcase_09 AC 605 ms
92,100 KB
testcase_10 AC 431 ms
88,200 KB
testcase_11 AC 423 ms
88,328 KB
testcase_12 AC 408 ms
88,212 KB
testcase_13 AC 531 ms
89,024 KB
testcase_14 AC 566 ms
88,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
N = int(input())
X = [[] for _ in range(4)]
for _ in range(N):
    xa, ya, xb, yb = map(int, input().split())
    X[0].append((xb, yb))
    X[1].append((xb, -ya))
    X[2].append((-xa, -ya))
    X[3].append((-xa, yb))

def calc(L):
    K = 144
    A = [(0, 0, 0, -1) for _ in range(K * K)] # max, min, sum, lazy
    B = [[0] * K for _ in range(K)]
    RE = []
    for x, y in L:
        xx = x // K
        yy = x % K
        re = 0
        for i in range(xx):
            ma, mi, su, la = A[i]
            if y <= mi: continue
            re -= su
            if ma <= y:
                A[i] = (y, y, y * K, y)
            else:
                if la >= 0:
                    for j in range(K):
                        B[i][j] = la
                for j in range(K):
                    B[i][j] = max(B[i][j], y)
                A[i] = (max(B[i]), min(B[i]), sum(B[i]), -1)
            re += A[i][2]
            
        ma, mi, su, la = A[xx]
        re -= su
        if la >= 0:
            for j in range(K):
                B[xx][j] = la
        
        for j in range(yy):
            B[xx][j] = max(B[xx][j], y)
        A[xx] = (max(B[xx]), min(B[xx]), sum(B[xx]), -1)
        re += A[xx][2]
        RE.append(re)
    return RE

ANS = [0] * N
for x in X:
    for i, a in enumerate(calc(x)):
        ANS[i] += a
print("\n".join(map(str, ANS)))
0