結果

問題 No.1077 Noelちゃんと星々4
ユーザー nanophoto12nanophoto12
提出日時 2020-07-24 13:45:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,079 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 206,656 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-06-25 01:25:40
合計ジャッジ時間 4,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 65 ms
56,960 KB
testcase_03 AC 83 ms
72,832 KB
testcase_04 AC 27 ms
24,064 KB
testcase_05 AC 20 ms
18,944 KB
testcase_06 AC 34 ms
30,336 KB
testcase_07 AC 40 ms
34,816 KB
testcase_08 AC 29 ms
26,112 KB
testcase_09 AC 26 ms
22,784 KB
testcase_10 AC 84 ms
72,832 KB
testcase_11 AC 54 ms
48,256 KB
testcase_12 AC 45 ms
40,320 KB
testcase_13 AC 20 ms
18,176 KB
testcase_14 AC 84 ms
71,168 KB
testcase_15 AC 44 ms
39,040 KB
testcase_16 AC 32 ms
26,624 KB
testcase_17 AC 51 ms
43,904 KB
testcase_18 AC 87 ms
74,112 KB
testcase_19 AC 19 ms
17,408 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 97 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define M_PI       3.14159265358979323846   // pi

using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<ll> VI;
typedef pair<ll, ll> P;
typedef tuple<ll, ll, ll> t3;
typedef tuple<ll, ll, ll, ll> t4;
typedef tuple<ll, ll, ll, ll, ll> t5;

#define rep(a,n) for(ll a = 0;a < n;a++)
#define repi(a,b,n) for(ll a = b;a < n;a++)

using namespace std;

static const ll INF = 1e15;

const ll mod = 1000000007;

template<typename T>
void chmin(T & ref, const T  value) {
	if (ref > value) ref = value;
}

int main() {
	int n;
	cin >> n;
	vector<ll> vs(n);
	rep(i, n) cin >> vs[i];
	vector<vector<ll>> dp(n + 1, vector<ll>(1e4 + 1, INF));
	dp[0][0] = 0;
	rep(i, n) {
		const ll v = vs[i];
		vector<ll> lows = dp[i];
		rep(j, 1e4) {
			lows[j + 1] = min(lows[j + 1], lows[j]);
		}
		rep(j, 1e4 + 1) {
			if (j <= v) {
				chmin(dp[i + 1][j], lows[j] + v- j );
			}
			else {
				chmin(dp[i + 1][j], dp[i][j] + j - v);
			}
		}
	}
	ll low = INF;
	rep(j, 1e4 + 1) {
		chmin(low, dp[n][j]);
	}
	cout << low << endl;
	return 0;
}
0