結果
問題 | No.1077 Noelちゃんと星々4 |
ユーザー | wattaihei |
提出日時 | 2020-06-12 23:30:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 980 bytes |
コンパイル時間 | 2,124 ms |
コンパイル使用メモリ | 202,656 KB |
実行使用メモリ | 83,076 KB |
最終ジャッジ日時 | 2024-06-24 06:03:25 |
合計ジャッジ時間 | 8,899 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
8,960 KB |
testcase_01 | AC | 9 ms
12,160 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | RE | - |
ソースコード
#include <bits/stdc++.h> typedef long long ll; #define REP(i, n) for(int i = 0; i < (int)(n); i++) #define FOR(i, a, b) for(int i = (int)(a); i < (int)(b); i++) using namespace std; const int MAX = 100000; ll INF = 10000000000; ll dp[102][MAX+1]; int main() { int N; cin >> N; ll A[N+1]; for (int i=0; i<N; i++){ cin >> A[i]; } for (int i=0; i<N+1; i++){ for (int j=0; j<MAX+1; j++){ dp[i][j] = INF; } } dp[0][0] = 0ll; for (int i=0; i<N; i++){ int a = A[i]; ll k = INF; for (int j=0; j<MAX+1; j++){ k = min(k, dp[i][j]); if (j < a){ dp[i+1][j] = min(dp[i+1][j], k + (ll)(a-j)); } else { dp[i+1][j] = min(dp[i+1][j], k + (ll)(j-a)); } } } ll ans = INF; for (int j=0; j<MAX+1; j++){ ans = min(ans, dp[N][j]); //cout << dp[N][j] << endl; } cout << ans << endl; }