結果

問題 No.4 おもりと天秤
ユーザー misora192misora192
提出日時 2020-05-30 21:23:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 907 bytes
コンパイル時間 1,841 ms
コンパイル使用メモリ 165,488 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-25 16:58:43
合計ジャッジ時間 2,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)

using namespace std;

typedef long long ll;
typedef unsigned long long ull;

template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);

	int n;
	cin >> n;

	int sm = 0;
	vector<int> w(n);
	rep(i, n) {
		cin >> w[i];
		sm += w[i];
	}

	if(sm % 2 == 1){
		cout << "impossible" << endl;
		exit(0);
	}

	int max_w = 10101;
	bool dp[2][max_w];
	rep(i, 2) rep(j, max_w) dp[i][j] = false;
	dp[0][0] = true;
	
	rep(i, n) {
		rep(j, max_w) dp[(i+1)%2][j] = false;

		rep(j, max_w){
			dp[(i+1)%2][j] |= dp[i%2][j];
			if(j-w[i] >= 0) dp[(i+1)%2][j] |= dp[i%2][j-w[i]];
		}
	}

	if(dp[n%2][sm/2]){
		cout << "possible" << endl;
	}else{
		cout << "impossible" << endl;
	}
}
0