結果

問題 No.2542 Yokan for Two
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-12-21 10:10:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 732 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 2,738 ms
コンパイル使用メモリ 210,348 KB
実行使用メモリ 17,356 KB
最終ジャッジ日時 2024-09-27 10:53:29
合計ジャッジ時間 22,374 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 234 ms
17,320 KB
testcase_04 AC 131 ms
6,944 KB
testcase_05 AC 358 ms
15,184 KB
testcase_06 AC 19 ms
10,624 KB
testcase_07 AC 617 ms
16,244 KB
testcase_08 AC 177 ms
14,568 KB
testcase_09 AC 594 ms
16,056 KB
testcase_10 AC 73 ms
6,940 KB
testcase_11 AC 91 ms
6,940 KB
testcase_12 AC 262 ms
14,748 KB
testcase_13 AC 61 ms
6,944 KB
testcase_14 AC 660 ms
16,200 KB
testcase_15 AC 699 ms
16,896 KB
testcase_16 AC 681 ms
16,532 KB
testcase_17 AC 672 ms
16,124 KB
testcase_18 AC 715 ms
17,148 KB
testcase_19 AC 367 ms
10,784 KB
testcase_20 AC 338 ms
10,096 KB
testcase_21 AC 337 ms
10,240 KB
testcase_22 AC 350 ms
10,392 KB
testcase_23 AC 352 ms
10,368 KB
testcase_24 AC 62 ms
17,352 KB
testcase_25 AC 89 ms
17,208 KB
testcase_26 AC 90 ms
17,272 KB
testcase_27 AC 95 ms
17,312 KB
testcase_28 AC 104 ms
17,200 KB
testcase_29 AC 194 ms
17,304 KB
testcase_30 AC 715 ms
17,308 KB
testcase_31 AC 712 ms
17,336 KB
testcase_32 AC 730 ms
17,356 KB
testcase_33 AC 725 ms
17,332 KB
testcase_34 AC 723 ms
17,320 KB
testcase_35 AC 727 ms
17,352 KB
testcase_36 AC 727 ms
17,308 KB
testcase_37 AC 716 ms
17,300 KB
testcase_38 AC 725 ms
17,324 KB
testcase_39 AC 716 ms
17,244 KB
testcase_40 AC 723 ms
17,328 KB
testcase_41 AC 732 ms
17,288 KB
testcase_42 AC 723 ms
17,232 KB
testcase_43 AC 721 ms
17,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    int L, N, ans=1e9;
    cin >> L >> N;
    vector<int> x(N+1);
    for (int i=1; i<=N; i++) cin >> x[i];

    vector dp(vector(L+1, vector<bool>(2)));
    dp[0][0] = 1;
    for (int i=1; i<=N; i++){
        vector pd(vector(L+1, vector<bool>(2)));
        for (int j=0; j<=L; j++){
            if (j-(x[i]-x[i-1])>=0){
                pd[j][0] = pd[j][0] | dp[j-(x[i]-x[i-1])][0];
                pd[j][1] = pd[j][1] | dp[j-(x[i]-x[i-1])][0];
            }
            pd[j][0] = pd[j][0] | dp[j][1];
            pd[j][1] = pd[j][1] | dp[j][1];
        }
        swap(dp, pd);
    }

    for (int i=0; i<=L; i++){
        if (dp[i][0]) ans = min(ans, abs(i-(L-i)));
    }

    cout << ans << endl;

    return 0;
}
0