結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー hir355hir355
提出日時 2020-06-26 21:27:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 638 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,700 KB
最終ジャッジ日時 2024-07-04 19:40:06
合計ジャッジ時間 11,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 WA -
testcase_09 AC 29 ms
10,880 KB
testcase_10 WA -
testcase_11 AC 28 ms
11,008 KB
testcase_12 WA -
testcase_13 AC 73 ms
11,776 KB
testcase_14 AC 71 ms
11,904 KB
testcase_15 WA -
testcase_16 AC 73 ms
11,904 KB
testcase_17 WA -
testcase_18 AC 74 ms
11,776 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 74 ms
11,904 KB
testcase_23 AC 929 ms
32,448 KB
testcase_24 AC 913 ms
32,444 KB
testcase_25 AC 942 ms
32,316 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 714 ms
32,448 KB
testcase_29 AC 722 ms
32,700 KB
testcase_30 AC 829 ms
32,316 KB
testcase_31 AC 846 ms
32,452 KB
testcase_32 AC 913 ms
32,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
n = int(input())
a = list(map(int, input().split()))
p = [INF] * (n + 1)
q = [INF] * (n + 1)
for i in range(n):
    p[i + 1] = min(p[i], a[i])
for i in range(n, 0, -1):
    q[i - 1] = min(q[i], a[i - 1])
ans = INF
for i in range(1, n):
    if max(p[i], q[i + 1]) < a[i]:
        ans = min(ans, p[i] + q[i + 1] + a[i])

p = [0] * (n + 1)
q = [0] * (n + 1)
for i in range(n):
    p[i + 1] = max(p[i], a[i])
for i in range(n, 0, -1):
    q[i - 1] = max(q[i], a[i - 1])
for i in range(1, n - 1):
    if min(p[i], q[i + 1]) > a[i]:
        ans = min(ans, p[i] + q[i + 1] + a[i])
if ans == INF:
    print(-1)
else:
    print(ans)
0