結果

問題 No.1077 Noelちゃんと星々4
ユーザー closeknclosekn
提出日時 2020-06-13 12:21:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 166,604 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-06-25 00:19:33
合計ジャッジ時間 3,354 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 49 ms
57,088 KB
testcase_03 AC 64 ms
72,832 KB
testcase_04 AC 21 ms
24,320 KB
testcase_05 AC 16 ms
18,944 KB
testcase_06 AC 26 ms
30,592 KB
testcase_07 AC 29 ms
34,688 KB
testcase_08 AC 22 ms
26,240 KB
testcase_09 AC 20 ms
22,912 KB
testcase_10 AC 62 ms
73,088 KB
testcase_11 AC 41 ms
48,384 KB
testcase_12 AC 34 ms
40,448 KB
testcase_13 AC 15 ms
18,304 KB
testcase_14 AC 62 ms
71,296 KB
testcase_15 AC 33 ms
39,040 KB
testcase_16 AC 22 ms
26,880 KB
testcase_17 AC 38 ms
44,032 KB
testcase_18 AC 64 ms
74,112 KB
testcase_19 AC 14 ms
17,664 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 70 ms
81,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int MAX_Y = 10004;
const long long INF = 1e12;

int main() {
  int n;
  cin >> n;
  int y[n];
  for ( int i = 0; i < n; i++ ) {
    cin >> y[i];
  }
  if ( n == 1 ) { cout << 0 << endl; return 0; }
  long long dp[n+1][MAX_Y];
  for ( int i = 0; i < n+1; i++ ) {
    for ( int j = 0; j < MAX_Y; j++ ) {
      dp[i][j] = INF;
    }
  }
  dp[0][0] = 0;

  for ( int i = 0; i < n; i++ ) {
    long long mn = INF;
    for ( int j = 0; j < MAX_Y; j++ ) {
      mn = min(mn, dp[i][j]);
      if ( y[i] > j ) {
        dp[i+1][j] = mn + (y[i]-j);
      } else {
        dp[i+1][j] = mn + (j-y[i]);
      }
    }
  }
  
  long long ans = INF;
  for ( int j = 0; j < MAX_Y; j++ ) {
    ans = min(ans, dp[n][j]);
  }
  cout << ans << endl;
  return 0;
}
0