結果

問題 No.4 おもりと天秤
ユーザー _oba23__oba23_
提出日時 2018-08-19 15:17:48
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,003 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 68,572 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-28 15:39:13
合計ジャッジ時間 1,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <numeric>

using namespace std;

int main()
{
    int n;
    cin >> n;
    vector<int> w(n);
    for (int i = 0; i < n; ++i)
    {
        cin >> w[i];
    }
    int sum = accumulate(w.begin(), w.end(), 0);
    if (sum % 2 == 1)
    {
        cout << "impossible" << endl;
        return 0;
    }
    int lim = sum / 2;
    vector<vector<bool>> cache(lim + 1, vector<bool>(n + 1, false));
    cache[0][0] = true;
    for (int i = 1; i <= lim; ++i)
    {
        for (int j = 1; j <= n; ++j)
        {
            bool result = false;
            for (auto wi : w)
            {
                if (i >= wi)
                {
                    result |= cache[i - wi][j - 1];
                }
            }
            cache[i][j] = result;
        }
    }
    bool result = false;
    for (int i = 1; i <= n; ++i)
    {
        result |= cache[lim][i];
    }
    cout << (result ? "possible" : "impossible") << endl;
    return 0;
}
0