結果

問題 No.615 集合に分けよう
ユーザー Sara ZayanSara Zayan
提出日時 2024-05-02 23:35:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,093 bytes
コンパイル時間 861 ms
コンパイル使用メモリ 75,260 KB
実行使用メモリ 821,360 KB
最終ジャッジ日時 2024-11-23 19:13:33
合計ジャッジ時間 24,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
9,856 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
23,552 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 RE -
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 MLE -
testcase_21 RE -
testcase_22 RE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 2 ms
5,120 KB
testcase_26 AC 2 ms
5,120 KB
testcase_27 AC 1,545 ms
5,120 KB
testcase_28 AC 1,521 ms
5,120 KB
testcase_29 WA -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<climits>
using namespace std;

const int INF = INT_MAX / 2;

int main() {
    int n, k;
    cin >> n >> k;
    int A[n];
    for(int i = 0; i < n; i++) cin >> A[i];

    sort(A, A + n);

    // DP[i][j] represents the minimum sum of sizes of sets obtained by dividing the first i elements into j subsets.
    int DP[n + 1][k + 1];
    for(int i = 0; i <= n; i++) {
        for(int j = 0; j <= k; j++) {
            DP[i][j] = INF;
        }
    }

    // Base case: If we have 0 elements, the minimum sum is 0 for any number of subsets.
    for(int j = 0; j <= k; j++) {
        DP[0][j] = 0;
    }

    for(int i = 1; i <= n; i++) {
        for(int j = 1; j <= k; j++) {
            for(int p = 0; p < i; p++) {
                // Calculate the size of the current subset.
                int size = A[i - 1] - A[p];
                // Update the DP table.
                DP[i][j] = min(DP[i][j], DP[p][j - 1] + size);
            }
        }
    }

    // The answer will be stored in DP[n][k].
    cout << DP[n][k] << endl;

    return 0;
}
0