結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー rlangevinrlangevin
提出日時 2023-01-22 17:11:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,082 ms / 2,000 ms
コード長 1,321 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 110,588 KB
最終ジャッジ日時 2024-06-24 21:29:39
合計ジャッジ時間 12,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,288 KB
testcase_01 AC 39 ms
53,744 KB
testcase_02 AC 40 ms
52,580 KB
testcase_03 AC 47 ms
59,948 KB
testcase_04 AC 46 ms
60,728 KB
testcase_05 AC 46 ms
60,564 KB
testcase_06 AC 45 ms
59,508 KB
testcase_07 AC 47 ms
60,572 KB
testcase_08 AC 46 ms
59,880 KB
testcase_09 AC 48 ms
60,444 KB
testcase_10 AC 46 ms
60,204 KB
testcase_11 AC 46 ms
60,604 KB
testcase_12 AC 46 ms
60,456 KB
testcase_13 AC 147 ms
77,484 KB
testcase_14 AC 145 ms
77,452 KB
testcase_15 AC 144 ms
77,368 KB
testcase_16 AC 146 ms
77,728 KB
testcase_17 AC 146 ms
77,620 KB
testcase_18 AC 145 ms
77,584 KB
testcase_19 AC 147 ms
77,596 KB
testcase_20 AC 146 ms
77,836 KB
testcase_21 AC 149 ms
77,424 KB
testcase_22 AC 148 ms
77,576 KB
testcase_23 AC 1,054 ms
110,320 KB
testcase_24 AC 1,048 ms
110,092 KB
testcase_25 AC 1,082 ms
110,224 KB
testcase_26 AC 1,061 ms
110,588 KB
testcase_27 AC 1,078 ms
110,096 KB
testcase_28 AC 410 ms
110,024 KB
testcase_29 AC 480 ms
110,084 KB
testcase_30 AC 753 ms
110,192 KB
testcase_31 AC 743 ms
110,220 KB
testcase_32 AC 727 ms
110,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = int(input())
A = list(map(int, input().split()))
B = [0] * N
for i in range(N):
    B[i] = (A[i], i + 1)
B.sort(reverse=True)

inf = 10 ** 18
T = SegmentTree(N + 2)
ans = inf
for a, i in B:
    x = T.query(0, i)
    y = T.query(i + 1, N + 2)
    ans = min(ans, x + a + y)
    T.update(i, a)
    
for i, a in enumerate(A):
    i += 1
    x = T.query(0, i)
    y = T.query(i + 1, N + 2)
    if x > a or y > a:
        continue
    ans = min(ans, x + a + y)

print(ans) if ans < inf else print(-1)
0