結果

問題 No.615 集合に分けよう
ユーザー ミドリムシミドリムシ
提出日時 2017-11-23 17:37:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 853 bytes
コンパイル時間 869 ms
コンパイル使用メモリ 75,452 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-05-05 09:53:52
合計ジャッジ時間 3,023 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,264 KB
testcase_01 AC 5 ms
11,392 KB
testcase_02 AC 4 ms
11,264 KB
testcase_03 AC 5 ms
11,264 KB
testcase_04 AC 5 ms
11,264 KB
testcase_05 AC 5 ms
11,264 KB
testcase_06 AC 5 ms
11,264 KB
testcase_07 AC 5 ms
11,240 KB
testcase_08 AC 6 ms
11,264 KB
testcase_09 AC 5 ms
11,264 KB
testcase_10 AC 5 ms
11,384 KB
testcase_11 AC 4 ms
11,180 KB
testcase_12 AC 5 ms
11,264 KB
testcase_13 AC 5 ms
11,264 KB
testcase_14 AC 6 ms
11,392 KB
testcase_15 WA -
testcase_16 RE -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 4 ms
11,392 KB
testcase_26 AC 4 ms
11,392 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int N, K;
vector<long> nums;
long dp[1000][1000];

long choose(int now, int array_now){
    if(now == N){
        return 0;
    }else if(dp[now][array_now] != -1){
        return dp[now][array_now];
    }else if(array_now == K){
        return dp[now][array_now] = choose(now + 1, array_now) + nums[now] - nums[now - 1];
    }else{
        return dp[now][array_now] = min(choose(now + 1, array_now) + nums[now] - nums[now - 1], choose(now + 1, array_now + 1));
    }
}

int main(){
    cin >> N >> K;
    nums.resize(N);
    for(int i = 0; i < N; i++){
        cin >> nums[i];
    }
    sort(nums.begin(), nums.end());
    for(int i = 0; i < 1000; i++){
        for(int j = 0; j < 1000; j++){
            dp[i][j] = -1;
        }
    }
    cout << choose(1, 1) << endl;
}
0