結果

問題 No.4 おもりと天秤
ユーザー dazydazy
提出日時 2017-11-25 02:57:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 986 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 56,380 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-05 12:01:13
合計ジャッジ時間 1,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;

#define fastcin {\
    cin.tie(0);\
    ios::sync_with_stdio(false);\
}
#define rep(i, a, b) for(int i = a; i < b; i++)
#define scan(x) cin >> x
#define print(x) cout << x << "\n"


int main() {
    fastcin;

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

    print("impossible");
    return 0;
}
0