結果

問題 No.2095 High Rise
ユーザー rlangevinrlangevin
提出日時 2023-01-25 21:30:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,039 ms / 2,000 ms
コード長 1,392 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 92,296 KB
最終ジャッジ日時 2024-06-26 23:42:08
合計ジャッジ時間 10,221 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 37 ms
52,736 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 37 ms
52,472 KB
testcase_10 AC 38 ms
52,736 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 95 ms
76,484 KB
testcase_13 AC 99 ms
76,252 KB
testcase_14 AC 115 ms
78,200 KB
testcase_15 AC 96 ms
76,216 KB
testcase_16 AC 92 ms
76,248 KB
testcase_17 AC 241 ms
78,564 KB
testcase_18 AC 193 ms
77,752 KB
testcase_19 AC 149 ms
77,736 KB
testcase_20 AC 249 ms
78,812 KB
testcase_21 AC 350 ms
80,244 KB
testcase_22 AC 1,018 ms
92,296 KB
testcase_23 AC 1,021 ms
91,892 KB
testcase_24 AC 1,034 ms
92,012 KB
testcase_25 AC 1,039 ms
91,308 KB
testcase_26 AC 1,003 ms
91,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

class SegmentTree:
    def __init__(self, size, f=min, default=10 ** 18):
        self.size = 2**(size-1).bit_length() 
        self.default = default
        self.dat = [default]*(self.size*2) 
        self.f = f

    def update(self, i, x):
        i += self.size
        self.dat[i] = x
        while i > 0:
            i >>= 1
            self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1])

    def query(self, l, r):
        l += self.size
        r += self.size
        lres, rres = self.default, self.default
        while l < r:
            if l & 1:
                lres = self.f(lres, self.dat[l])
                l += 1

            if r & 1:
                r -= 1
                rres = self.f(self.dat[r], rres) 
            l >>= 1
            r >>= 1
        res = self.f(lres, rres)
        return res
    

N, M = map(int, readline().split())
if N == 1:
    print(0)
    exit()
A = []
for i in range(N):
    A.append(list(map(int, readline().split())))
A.append([0]*M)

pre = SegmentTree(M)
for i in range(M):
    pre.update(i, A[0][i] + A[1][i])
    
for i in range(1, N):
    dp = SegmentTree(M)
    for j in range(M):
        now = pre.query(j, j + 1)
        pre.update(j, now - A[i][j])
        dp.update(j, pre.query(0, M) + A[i][j] + A[i + 1][j])
        pre.update(j, now)
    pre, dp = dp, pre
    
print(pre.query(0, M))
0