結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー hiragnhiragn
提出日時 2022-12-02 16:24:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,592 KB
最終ジャッジ日時 2024-10-09 18:08:05
合計ジャッジ時間 7,425 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 48 ms
11,776 KB
testcase_14 AC 48 ms
11,904 KB
testcase_15 AC 48 ms
11,776 KB
testcase_16 AC 47 ms
11,776 KB
testcase_17 AC 47 ms
11,776 KB
testcase_18 AC 48 ms
11,776 KB
testcase_19 AC 49 ms
11,776 KB
testcase_20 AC 49 ms
11,776 KB
testcase_21 AC 48 ms
11,904 KB
testcase_22 AC 48 ms
11,776 KB
testcase_23 AC 435 ms
32,460 KB
testcase_24 AC 549 ms
32,440 KB
testcase_25 AC 440 ms
32,288 KB
testcase_26 AC 432 ms
32,588 KB
testcase_27 AC 438 ms
32,552 KB
testcase_28 AC 403 ms
32,592 KB
testcase_29 AC 398 ms
32,580 KB
testcase_30 AC 427 ms
32,296 KB
testcase_31 AC 418 ms
32,252 KB
testcase_32 AC 421 ms
32,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_kadomatsu(a, b, c):
    return len({a, b, c}) == 3 and (b > max(a, c) or b < min(a, c))


def main():
    n = int(input())
    a = list(map(int, input().split()))

    left = [a[0]] * n
    right = [a[-1]] * n
    for i in range(1, n):
        left[i] = min(left[i - 1], a[i])
    for i in reversed(range(n - 1)):
        right[i] = min(a[i], right[i + 1])

    ans = 10 ** 9
    for i in range(1, n - 1):
        if is_kadomatsu(left[i - 1], a[i], right[i + 1]):
            ans = min(ans, left[i - 1] + a[i] + right[i + 1])

    if ans == 10 ** 9:
        ans = -1
    print(ans)


if __name__ == "__main__":
    main()
0