結果
問題 | No.838 Noelちゃんと星々3 |
ユーザー | Mister |
提出日時 | 2020-08-04 02:59:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 661 bytes |
コンパイル時間 | 911 ms |
コンパイル使用メモリ | 80,456 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-13 20:34:51 |
合計ジャッジ時間 | 2,141 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 22 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using lint = long long; constexpr lint INF = 1LL << 60; void solve() { int n; std::cin >> n; std::vector<lint> xs(n); for (auto& x : xs) std::cin >> x; std::sort(xs.begin(), xs.end()); std::vector<lint> dp(n + 1, INF); dp[0] = 0; for (int i = 2; i < n; ++i) { for (int k = 1; k <= 2; ++k) { lint cost = xs[i] - xs[i - k]; dp[i + 1] = std::min(dp[i + 1], dp[i - k] + cost); } } std::cout << dp[n] << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }