結果

問題 No.595 登山
ユーザー ikdikd
提出日時 2017-11-29 23:05:25
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 83 ms / 1,500 ms
コード長 671 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 101,376 KB
実行使用メモリ 21,788 KB
最終ジャッジ日時 2024-06-12 22:43:07
合計ジャッジ時間 3,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 67 ms
21,788 KB
testcase_05 AC 20 ms
6,456 KB
testcase_06 AC 59 ms
14,964 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 59 ms
15,092 KB
testcase_10 AC 42 ms
11,188 KB
testcase_11 AC 36 ms
10,080 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 19 ms
6,036 KB
testcase_14 AC 56 ms
17,056 KB
testcase_15 AC 56 ms
16,924 KB
testcase_16 AC 56 ms
17,096 KB
testcase_17 AC 57 ms
17,052 KB
testcase_18 AC 56 ms
17,056 KB
testcase_19 AC 79 ms
20,712 KB
testcase_20 AC 80 ms
20,716 KB
testcase_21 AC 79 ms
20,708 KB
testcase_22 AC 77 ms
20,712 KB
testcase_23 AC 79 ms
20,712 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 83 ms
20,644 KB
testcase_27 AC 71 ms
20,692 KB
testcase_28 AC 70 ms
20,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main(){
  import std.stdio, std.string, std.conv, std.algorithm;

  int n; long p;
  rd(n, p);
  auto h=readln.split.to!(long[]);

  auto rec=new long[][](n, 3);
  const R=0, L=1, JP=2;
  rec[1][L]=1_000_000_000_000_000_000;
  foreach(i; 1..n){
    rec[i][R]=min(rec[i-1][R], rec[i-1][JP])+max(0, h[i]-h[i-1]);
    if(i>=2) rec[i][L]=min(rec[i-1][L], rec[i-1][JP])+max(0, h[i-1]-h[i]);
    rec[i][JP]=min(rec[i-1][R], rec[i-1][L], rec[i-1][JP])+p;
  }

  writeln(reduce!(min)(rec[n-1]));
}

void rd(T...)(ref T x){
  import std.stdio, std.string, std.conv;
  auto l=readln.split;
  assert(l.length==x.length);
  foreach(i, ref e; x){
    e=l[i].to!(typeof(e));
  }
}
0