結果
問題 | No.615 集合に分けよう |
ユーザー | k |
提出日時 | 2020-07-28 02:52:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 740 bytes |
コンパイル時間 | 2,124 ms |
コンパイル使用メモリ | 203,508 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-28 20:30:51 |
合計ジャッジ時間 | 6,527 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) const long long INF = 1LL<<60; int n, k; long long a[55555]; long long dp[2][55555]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n >> k; REP (i, n) cin >> a[i]; sort(a, a + n); REP (i, 2) REP (j, 55555) dp[i][j] = INF; dp[0][0] = 0; REP (i, n) { int cur = i & 1; int nxt = (i + 1) & 1; fill(dp[nxt], dp[nxt]+k+1, INF); REP (j, k+1) { if (dp[cur][j] == INF) continue; if (i >= 1) dp[nxt][j] = min(dp[nxt][j], dp[cur][j] - a[i-1] + a[i]); if (j + 1 <= k) dp[nxt][j+1] = min(dp[nxt][j+1] , dp[cur][j]); } } cout << dp[n&1][k] << endl; return 0; }