結果

問題 No.1077 Noelちゃんと星々4
ユーザー kkktymkkktym
提出日時 2020-06-12 22:02:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 862 ms
コンパイル使用メモリ 79,160 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-06-24 05:03:40
合計ジャッジ時間 2,210 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 38 ms
30,208 KB
testcase_03 AC 48 ms
37,888 KB
testcase_04 AC 16 ms
13,824 KB
testcase_05 AC 13 ms
11,008 KB
testcase_06 AC 20 ms
16,768 KB
testcase_07 AC 23 ms
18,816 KB
testcase_08 AC 17 ms
14,592 KB
testcase_09 AC 15 ms
13,056 KB
testcase_10 AC 48 ms
37,888 KB
testcase_11 AC 32 ms
25,728 KB
testcase_12 AC 26 ms
21,760 KB
testcase_13 AC 12 ms
10,752 KB
testcase_14 AC 47 ms
37,248 KB
testcase_15 AC 26 ms
20,992 KB
testcase_16 AC 18 ms
15,104 KB
testcase_17 AC 29 ms
23,424 KB
testcase_18 AC 49 ms
38,656 KB
testcase_19 AC 12 ms
10,496 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 54 ms
42,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <cmath>
#define rep(i,n) for(int i=0;i<n;++i)
#define rep1(i,n) for(int i=1;i<=n;++i)
using namespace std;
template<class T>bool chmax(T &a, const T &b) { if(a < b){ a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if(a > b){ a = b; return 1; } return 0; }
int main()
{
  int n; cin >> n;
  vector<int> a(n);
  int maxi = 0;
  rep(i,n) {
    cin >> a[i];
    chmax(maxi, a[i]);
  }

  vector<vector<int>> sum(n+1, vector<int>(maxi + 1, 1e+9));
  rep(i,maxi+1) sum[0][i] = 0;
  rep1(i,n) {
    rep(j,maxi+1) {
      if(j > 0) sum[i][j] = min(sum[i][j-1], sum[i-1][j] + abs(a[i-1] - j));
      else sum[i][j] = sum[i-1][j] + abs(a[i-1] - j);
    }
  }
  cout << sum[n][maxi] << "\n";

  
  return 0;
}
0