結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー SSlimeSSlime
提出日時 2020-06-27 10:19:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,768 KB
最終ジャッジ日時 2024-07-05 08:58:20
合計ジャッジ時間 7,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 34 ms
10,624 KB
testcase_08 WA -
testcase_09 AC 30 ms
10,624 KB
testcase_10 WA -
testcase_11 AC 29 ms
10,624 KB
testcase_12 WA -
testcase_13 AC 52 ms
12,032 KB
testcase_14 AC 51 ms
11,904 KB
testcase_15 WA -
testcase_16 AC 52 ms
11,904 KB
testcase_17 WA -
testcase_18 AC 51 ms
11,904 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 51 ms
12,032 KB
testcase_23 AC 617 ms
32,768 KB
testcase_24 AC 608 ms
32,600 KB
testcase_25 AC 631 ms
32,600 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 362 ms
32,448 KB
testcase_29 AC 347 ms
32,572 KB
testcase_30 AC 476 ms
32,272 KB
testcase_31 AC 465 ms
32,400 KB
testcase_32 AC 452 ms
32,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

mod = 10**9 + 7

Rm = [[0]*n,[0]*n]
B = sorted(range(n),key = lambda x:A[x])
ans = 10**9
for b in B:
    left = Rm[0][b]
    right = Rm[1][b]
    if left*right > 0:
        ans = min(ans, left + right + A[b])
    idx = b
    while idx < n:
        if Rm[0][idx] != 0:break
        Rm[0][idx] = A[b]
        idx += 1
    idx = b
    while idx >= 0:
        if Rm[1][idx] != 0:break
        Rm[1][idx] = A[b]
        idx -= 1
print(ans if ans != 10**9 else -1)
0