結果
問題 | No.1095 Smallest Kadomatsu Subsequence |
ユーザー | toyuzuko |
提出日時 | 2020-06-27 14:27:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,658 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 52,108 KB |
最終ジャッジ日時 | 2024-07-05 09:08:12 |
合計ジャッジ時間 | 8,909 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
16,256 KB |
testcase_01 | AC | 29 ms
11,008 KB |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 31 ms
10,880 KB |
testcase_04 | AC | 31 ms
10,880 KB |
testcase_05 | AC | 32 ms
10,880 KB |
testcase_06 | AC | 31 ms
10,880 KB |
testcase_07 | AC | 35 ms
10,880 KB |
testcase_08 | AC | 31 ms
11,136 KB |
testcase_09 | AC | 31 ms
11,008 KB |
testcase_10 | AC | 31 ms
11,136 KB |
testcase_11 | AC | 31 ms
10,880 KB |
testcase_12 | AC | 31 ms
10,880 KB |
testcase_13 | AC | 413 ms
12,928 KB |
testcase_14 | AC | 414 ms
13,056 KB |
testcase_15 | AC | 406 ms
12,928 KB |
testcase_16 | AC | 414 ms
12,928 KB |
testcase_17 | AC | 410 ms
13,056 KB |
testcase_18 | AC | 413 ms
12,928 KB |
testcase_19 | AC | 412 ms
12,800 KB |
testcase_20 | AC | 414 ms
13,056 KB |
testcase_21 | AC | 414 ms
12,928 KB |
testcase_22 | AC | 413 ms
12,928 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
class SegmentTree(): def __init__(self, arr, func=min, ie=2**63): self.h = (len(arr) - 1).bit_length() self.n = 2**self.h self.ie = ie self.func = func self.tree = [ie for _ in range(2 * self.n)] for i in range(len(arr)): self.tree[self.n + i] = arr[i] for i in range(1, self.n)[::-1]: self.tree[i] = func(self.tree[2 * i], self.tree[2 * i + 1]) def set(self, idx, x): idx += self.n self.tree[idx] = x while idx: idx >>= 1 self.tree[idx] = self.func(self.tree[2 * idx], self.tree[2 * idx + 1]) def query(self, lt, rt): lt += self.n rt += self.n vl = vr = self.ie while rt - lt > 0: if lt & 1: vl = self.func(vl, self.tree[lt]) lt += 1 if rt & 1: rt -= 1 vr = self.func(self.tree[rt], vr) lt >>= 1 rt >>= 1 return self.func(vl, vr) INF = 10**18 N = int(input()) A = list(map(int, input().split())) S = sorted([(A[i], i) for i in range(N)]) res = INF st1 = SegmentTree([INF] * N, min, INF) for i in range(N): a, idx = S[i] st1.set(idx, a) lt = st1.query(0, idx) rt = st1.query(idx + 1, N) if lt == INF or rt == INF: continue res = min(res, lt + rt + a) st2 = SegmentTree([INF] * N, min, INF) for i in range(N)[::-1]: a, idx = S[i] st2.set(idx, a) lt = st2.query(0, idx) rt = st2.query(idx + 1, N) if lt == INF or rt == INF: continue res = min(res, lt + rt + a) print(res if res != INF else -1)