結果

問題 No.1188 レベルX門松列
ユーザー tentententen
提出日時 2020-12-29 16:22:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 768 ms / 2,000 ms
コード長 2,638 bytes
コンパイル時間 2,630 ms
コンパイル使用メモリ 77,412 KB
実行使用メモリ 52,312 KB
最終ジャッジ日時 2024-10-05 17:35:05
合計ジャッジ時間 13,902 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 564 ms
51,208 KB
testcase_01 AC 635 ms
52,312 KB
testcase_02 AC 620 ms
50,780 KB
testcase_03 AC 674 ms
50,992 KB
testcase_04 AC 619 ms
51,336 KB
testcase_05 AC 105 ms
39,992 KB
testcase_06 AC 641 ms
51,220 KB
testcase_07 AC 726 ms
51,428 KB
testcase_08 AC 755 ms
51,840 KB
testcase_09 AC 127 ms
41,112 KB
testcase_10 AC 130 ms
41,236 KB
testcase_11 AC 264 ms
47,040 KB
testcase_12 AC 267 ms
47,444 KB
testcase_13 AC 276 ms
47,836 KB
testcase_14 AC 659 ms
50,696 KB
testcase_15 AC 768 ms
51,108 KB
testcase_16 AC 190 ms
43,212 KB
testcase_17 AC 687 ms
50,988 KB
testcase_18 AC 124 ms
41,552 KB
testcase_19 AC 539 ms
50,352 KB
testcase_20 AC 118 ms
41,472 KB
testcase_21 AC 104 ms
41,168 KB
testcase_22 AC 106 ms
41,352 KB
testcase_23 AC 121 ms
41,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        int[] lds = new int[n + 1];
        int maxD = 0;
        lds[0] = Integer.MAX_VALUE;
        int[] lis = new int[n + 1];
        Arrays.fill(lis, Integer.MAX_VALUE);
        lis[0] = 0;
        int maxI = 0;
        int[] leftMaxesI = new int[n];
        int[] leftMaxesD = new int[n];
        int left;
        int right;
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            left = 0;
            right = n;
            while (right - left > 1) {
                int m = (left + right) / 2;
                if (lis[m] < arr[i]) {
                    left = m;
                } else {
                    right = m;
                }
            }
            lis[right] = Math.min(lis[right], arr[i]);
            maxI = Math.max(maxI, right);
            leftMaxesI[i] = maxI;
            left = 0;
            right = n;
            while (right - left > 1) {
                int m = (left + right) / 2;
                if (lds[m] > arr[i]) {
                    left = m;
                } else {
                    right = m;
                }
            }
            lds[right] = Math.max(lds[right], arr[i]);
            maxD = Math.max(maxD, right);
            leftMaxesD[i] = maxD;
        }
        Arrays.fill(lds, 0);
        lds[0] = Integer.MAX_VALUE;
        Arrays.fill(lis, Integer.MAX_VALUE);
        lis[0] = 0;
        maxD = 0;
        maxI = 0;
        int ans = 0;
        for (int i = n - 1; i >= 0; i--) {
            left = 0;
            right = n;
            while (right - left > 1) {
                int m = (left + right) / 2;
                if (lis[m] < arr[i]) {
                    left = m;
                } else {
                    right = m;
                }
            }
            lis[right] = Math.min(lis[right], arr[i]);
            maxI = Math.max(maxI, right);
            ans = Math.max(ans, Math.min(leftMaxesI[i], maxI) - 1);
            left = 0;
            right = n;
            while (right - left > 1) {
                int m = (left + right) / 2;
                if (lds[m] > arr[i]) {
                    left = m;
                } else {
                    right = m;
                }
            }
            lds[right] = Math.max(lds[right], arr[i]);
            maxD = Math.max(maxD, right);
            ans = Math.max(ans, Math.min(leftMaxesD[i], maxD) - 1);
        }
        System.out.println(ans);
    }
}
0