結果

問題 No.1077 Noelちゃんと星々4
ユーザー kk
提出日時 2020-09-02 15:07:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 1,893 ms
コンパイル使用メモリ 202,504 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-11-21 14:10:12
合計ジャッジ時間 3,195 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 25 ms
30,208 KB
testcase_03 AC 30 ms
38,144 KB
testcase_04 AC 10 ms
13,952 KB
testcase_05 AC 9 ms
11,264 KB
testcase_06 AC 13 ms
16,896 KB
testcase_07 AC 15 ms
19,072 KB
testcase_08 AC 12 ms
14,848 KB
testcase_09 AC 11 ms
13,184 KB
testcase_10 AC 31 ms
38,272 KB
testcase_11 AC 22 ms
25,984 KB
testcase_12 AC 18 ms
21,760 KB
testcase_13 AC 9 ms
10,752 KB
testcase_14 AC 31 ms
37,248 KB
testcase_15 AC 17 ms
21,376 KB
testcase_16 AC 12 ms
14,976 KB
testcase_17 AC 19 ms
23,680 KB
testcase_18 AC 32 ms
38,912 KB
testcase_19 AC 8 ms
10,624 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 36 ms
42,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()

const double PI = acos(-1);

int n;
int y[1000];
int dp[1000][10000+1];


int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  cin >> n;
  REP (i, n) cin >> y[i];

  for (int h = 0; h <= 10000; h++)
    dp[0][h] = abs(h - y[0]);

  for (int i = 1; i < n; i++) {
    for (int h = 0; h <= 10000; h++) {
      dp[i][h] = dp[i-1][h] + abs(h - y[i]);
      if (h > 0) {
        if (y[i] > h-1)
          dp[i][h] = min(dp[i][h], dp[i][h-1] - 1);
        else
          dp[i][h] = min(dp[i][h], dp[i][h-1] + 1);
      }
    }
  }

  int ret = 1<<30;
  for (int h = 0; h <= 10000; h++)
    ret = min(ret, dp[n-1][h]);
  cout << ret << endl;
  
  return 0;
}
0