結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー hirofumi9991hirofumi9991
提出日時 2020-06-27 02:11:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 400 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,864 KB
最終ジャッジ日時 2024-07-05 05:54:40
合計ジャッジ時間 5,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 24 ms
10,624 KB
testcase_10 WA -
testcase_11 AC 23 ms
10,624 KB
testcase_12 WA -
testcase_13 AC 40 ms
11,648 KB
testcase_14 AC 39 ms
11,648 KB
testcase_15 WA -
testcase_16 AC 41 ms
11,648 KB
testcase_17 WA -
testcase_18 AC 39 ms
11,648 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 40 ms
11,776 KB
testcase_23 AC 351 ms
32,508 KB
testcase_24 AC 353 ms
32,744 KB
testcase_25 AC 357 ms
32,864 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 256 ms
32,380 KB
testcase_29 AC 283 ms
32,384 KB
testcase_30 AC 309 ms
32,740 KB
testcase_31 AC 313 ms
32,864 KB
testcase_32 AC 310 ms
32,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
S = [0] * (N+1)
S[-1] = float('inf')
for i, a in enumerate(A[::-1]):
    S[N-1-i] = min(a, S[N - i])

ans = float('inf')
first = A[0]
Done = set()
for i, a in enumerate(A[1:-1]):
    if (first - a) * (S[i+1] - a) > 0:
        ans = min(ans, first + S[i+1] + a)
    if first > a:
        first = a


if ans == float('inf'):
    ans = -1
print(ans)
0