結果

問題 No.595 登山
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-11-10 23:17:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,105 ms / 1,500 ms
コード長 1,821 bytes
コンパイル時間 2,706 ms
コンパイル使用メモリ 84,804 KB
実行使用メモリ 67,520 KB
最終ジャッジ日時 2024-05-03 14:30:11
合計ジャッジ時間 22,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
49,772 KB
testcase_01 AC 126 ms
49,492 KB
testcase_02 AC 127 ms
49,224 KB
testcase_03 AC 130 ms
49,348 KB
testcase_04 AC 1,011 ms
67,016 KB
testcase_05 AC 493 ms
54,292 KB
testcase_06 AC 871 ms
64,464 KB
testcase_07 AC 284 ms
55,476 KB
testcase_08 AC 316 ms
57,220 KB
testcase_09 AC 816 ms
64,600 KB
testcase_10 AC 586 ms
60,080 KB
testcase_11 AC 549 ms
58,556 KB
testcase_12 AC 271 ms
55,184 KB
testcase_13 AC 408 ms
57,988 KB
testcase_14 AC 896 ms
65,128 KB
testcase_15 AC 835 ms
65,328 KB
testcase_16 AC 825 ms
65,232 KB
testcase_17 AC 889 ms
65,320 KB
testcase_18 AC 884 ms
65,304 KB
testcase_19 AC 1,016 ms
65,600 KB
testcase_20 AC 1,105 ms
65,016 KB
testcase_21 AC 964 ms
65,164 KB
testcase_22 AC 1,026 ms
65,284 KB
testcase_23 AC 973 ms
66,508 KB
testcase_24 AC 121 ms
49,764 KB
testcase_25 AC 120 ms
49,384 KB
testcase_26 AC 1,102 ms
65,264 KB
testcase_27 AC 814 ms
67,520 KB
testcase_28 AC 793 ms
65,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    static final long I=1L<<50;
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int n=Integer.parseInt(scan.next());
        long p=Integer.parseInt(scan.next());
        long[] h=new long[n];
        for(int i=0;i<n;++i)
            h[i]=Integer.parseInt(scan.next());
        long[] l=new long[n],r=new long[n];
        l[0]=r[n-1]=0;
        for(int i=1;i<n;++i)
            l[i]=l[i-1]+Math.max(h[i]-h[i-1],0);
        for(int i=n-2;i>=0;--i)
            r[i]=r[i+1]+Math.max(h[i]-h[i+1],0);
        MaxSegmentTree s1=new MaxSegmentTree();
        MaxSegmentTree s2=new MaxSegmentTree();
        long[] dp=new long[n];
        dp[0]=0;
        dp[1]=0;
        s1.update(0,l[1]);
        s2.update(0,-r[1]);
        for(int i=1;i<n;++i){
            long m=l[i];
            m=Math.min(m,-s1.query(0,i)+l[i]+p);
            m=Math.min(m,-s2.query(0,i)-r[i]+p);
            dp[i]=m;
            if(i<n-1){
                s1.update(i,-m+l[i+1]);
                s2.update(i,-m-r[i+1]);
            }
        }
        System.out.println(dp[n-1]);
    }
}
class MaxSegmentTree {
    static final int SIZE = 1 << 18;
    static final long INFINITY = (1L << 61) - 1;
    long[] seg;
    MaxSegmentTree() {
	this.seg = new long[2 * SIZE];
    }
    void update(int x, long value) {
	x += SIZE - 1;
	this.seg[x] = value;
	while (x > 0) {
	    x = (x - 1) / 2;
	    this.seg[x] = Math.max(this.seg[2 * x + 1], this.seg[2 * x + 2]);
	}
    }
    long query(int l, int r) {
	l += SIZE - 1;
	r += SIZE - 1;
        long y = -INFINITY;
	while (l < r) {
	    if ((l & 1) == 0) {
		y = Math.max(y, this.seg[l]);
	    }
	    if ((r & 1) == 0) {
		y = Math.max(y, this.seg[r - 1]);
	    }
	    l /= 2;
	    r = (r - 1) / 2;
	}
	return y;
    }
}
0