結果

問題 No.4 おもりと天秤
ユーザー dazydazy
提出日時 2017-11-25 04:06:00
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 887 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 55,000 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 12:08:27
合計ジャッジ時間 1,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;

#define fastcin {\
    cin.tie(0);\
    ios::sync_with_stdio(false);\
}
#define scan(x) cin >> x
#define print(x) cout << x << "\n"


int main() {
    fastcin;

    int n, i, j;
    scan(n);
    int sum = 0, w[n];
    for (i = 0; i < n; ++i) {
        scan(w[i]);
        sum += w[i];
    }
    
    if (!(sum & 0x01)) {
        int half = sum/2;
        bool dp[half+1][n+1];
        for (i = 0; i < n+1; ++i) for (j = 0; j < half+1; ++j) dp[i][j] = false;
        dp[0][0] = true;

        for (i = 0; i < n; ++i) {
            for (j = 0; j < half+1; ++j) {
                dp[i+1][j] |= dp[i][j];
                if (j+w[i] <= half) dp[i+1][j+w[i]] |= dp[i][j];
            }
            if (dp[i+1][half]) {
                print("possible");
                exit(0);
            }
        }
    } else print("impossible");

    return 0;
}
0