結果

問題 No.1077 Noelちゃんと星々4
ユーザー m-44m-44
提出日時 2020-06-12 21:38:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 1,630 ms
コンパイル使用メモリ 167,812 KB
実行使用メモリ 42,576 KB
最終ジャッジ日時 2024-06-24 04:37:02
合計ジャッジ時間 2,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 18 ms
31,420 KB
testcase_03 AC 21 ms
38,716 KB
testcase_04 AC 8 ms
14,468 KB
testcase_05 AC 7 ms
11,492 KB
testcase_06 AC 10 ms
17,016 KB
testcase_07 AC 11 ms
19,676 KB
testcase_08 AC 9 ms
15,996 KB
testcase_09 AC 9 ms
13,412 KB
testcase_10 AC 22 ms
38,464 KB
testcase_11 AC 14 ms
26,068 KB
testcase_12 AC 13 ms
22,452 KB
testcase_13 AC 7 ms
11,672 KB
testcase_14 AC 21 ms
38,696 KB
testcase_15 AC 13 ms
21,912 KB
testcase_16 AC 9 ms
15,448 KB
testcase_17 AC 14 ms
24,544 KB
testcase_18 AC 22 ms
38,932 KB
testcase_19 AC 7 ms
11,044 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 25 ms
42,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int dp[1000][10001];
int main() {
  int n;
  cin>>n;
  int y[n];
  for (int i=0; i<n; i++) cin>>y[i];
  for (int i=0; i<n; i++) {
    for (int j=0; j<10001; j++) {
      dp[i][j] = 0;
    }
  }
  for (int i=0; i<10001; i++) {
    dp[0][i] = abs(i - y[0]);
  }
  for (int i=1; i<n; i++) {
    dp[i][0] = dp[i-1][0] + y[i];
    int min_v = dp[i-1][0];
    for (int j=1; j<10001; j++) {
      min_v = min(dp[i-1][j], min_v);
      dp[i][j] = min_v + abs(y[i] - j);
    }
  }
  // for (int i=0; i<n; i++) {
  //   for (int j=0; j<10; j++) {
  //     cout<<dp[i][j]<<" ";
  //   }
  //   cout<<endl;
  // }
  int ans = 1e9;
  for (int i=0; i<10001; i++) {
    ans = min(dp[n-1][i], ans);
  }
  cout<<ans<<endl;
}
0