結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー tentententen
提出日時 2020-11-18 16:19:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 837 ms / 2,000 ms
コード長 1,122 bytes
コンパイル時間 2,698 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 69,484 KB
最終ジャッジ日時 2024-07-23 09:04:58
合計ジャッジ時間 17,073 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,084 KB
testcase_01 AC 126 ms
54,272 KB
testcase_02 AC 129 ms
53,988 KB
testcase_03 AC 138 ms
54,208 KB
testcase_04 AC 135 ms
53,992 KB
testcase_05 AC 140 ms
53,972 KB
testcase_06 AC 139 ms
54,040 KB
testcase_07 AC 139 ms
54,032 KB
testcase_08 AC 140 ms
54,264 KB
testcase_09 AC 137 ms
54,016 KB
testcase_10 AC 138 ms
54,276 KB
testcase_11 AC 133 ms
54,240 KB
testcase_12 AC 137 ms
53,772 KB
testcase_13 AC 260 ms
58,252 KB
testcase_14 AC 252 ms
58,660 KB
testcase_15 AC 257 ms
58,492 KB
testcase_16 AC 263 ms
58,568 KB
testcase_17 AC 265 ms
57,796 KB
testcase_18 AC 256 ms
58,208 KB
testcase_19 AC 254 ms
58,672 KB
testcase_20 AC 251 ms
58,108 KB
testcase_21 AC 270 ms
58,420 KB
testcase_22 AC 259 ms
58,300 KB
testcase_23 AC 837 ms
67,616 KB
testcase_24 AC 832 ms
67,660 KB
testcase_25 AC 827 ms
67,496 KB
testcase_26 AC 821 ms
67,388 KB
testcase_27 AC 707 ms
67,560 KB
testcase_28 AC 739 ms
69,184 KB
testcase_29 AC 737 ms
69,484 KB
testcase_30 AC 748 ms
67,404 KB
testcase_31 AC 746 ms
67,860 KB
testcase_32 AC 747 ms
67,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        int[] lefts = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            if (i == 0) {
                lefts[i] = arr[i];
            } else {
                lefts[i] = Math.min(arr[i], lefts[i - 1]);
            }
        }
        int[] rights = new int[n];
        rights[n - 1] = arr[n - 1];
        for (int i = n - 2; i >= 0; i--) {
            rights[i] = Math.min(arr[i], rights[i + 1]);
        }
        int min = Integer.MAX_VALUE;
        for (int i = 1; i < n - 1; i++) {
            int front = lefts[i - 1];
            int rear = rights[i + 1];
            if ((arr[i] > front && arr[i] > rear) || (arr[i] < front && arr[i] < rear)) {
                min = Math.min(min, arr[i] + rear + front);
            }
        }
        if (min == Integer.MAX_VALUE) {
            System.out.println(-1);
        } else {
            System.out.println(min);
        }
    }
}
0