結果

問題 No.4 おもりと天秤
ユーザー hatsukiyurahatsukiyura
提出日時 2024-09-27 17:32:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 3,363 ms
コンパイル使用メモリ 247,720 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-27 17:32:25
合計ジャッジ時間 4,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
6,940 KB
testcase_14 WA -
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using i64 = long long;

int main() {

    std::cin.tie(nullptr)->sync_with_stdio(false);

    int n;
    std::cin >> n;

    std::vector<i64> a(n);

    for (auto &x : a) std::cin >> x;

    auto s = std::accumulate(a.begin(), a.end(), 0LL);

    if (s & 1) {
        std::cout << "impossible\n";
        return 0;
    }

    s >>= 1;

    std::vector<i64> dp(s + 1);

    dp[0] = 1;

    for (int i = 0; i < n; ++i) {
        for (int j = 0; j <= s; ++j) {
            if (dp[j] && j + a[i] <= s) {
                dp[j + a[i]] = 1;
            }
        }
    }
    
    std::cout << (dp[s] ? "possible" : "impossible") << '\n';

    return 0;
}
0