結果

問題 No.4 おもりと天秤
ユーザー dgd1724dgd1724
提出日時 2016-11-22 06:49:02
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,103 bytes
コンパイル時間 1,244 ms
コンパイル使用メモリ 160,280 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-05-05 12:20:00
合計ジャッジ時間 7,781 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

//const static double	de_PI	= 3.14159265358979323846;
//const static double	de_EPS	= 0.000001;
//const static int	de_MOD = 1000000007;
//const static int	de_MAX = 999999999;
//const static int	de_MIN = -999999999;

inline void Increase_Binary(std::bitset<100> &a) {

	unsigned int i = 0;
	while (1) {
		if (a[i] == 0) {
			a[i] = 1;
			break;
		}
		else {
			a[i] = 0;
			i++;
		}
	}
}

int main(void) {

	//std::ifstream inf("123.txt");	std::cin.rdbuf(inf.rdbuf());

	int N = 0;
	std::cin >> N;
	std::valarray<int> W(N);
	for (int i = 0; i < N; i++) { std::cin >> W[i]; }

	if (W.sum() % 2 != 0) {
		std::cout << "impossible" << std::endl;
		return 0;
	}

	int half = N / 2, count = 0, sum = 0, compare = W.sum() / 2;
	std::bitset<100> flg;
	while (1) {
		Increase_Binary(flg);
		count = flg.count();
		if (count == N) { break; }
		if (count > half) { continue; }

		sum = 0;
		for (int i = 0; i < N; i++) {
			if (flg[i]) { sum += W[i]; }
		}

		if (sum == compare) {
			std::cout << "possible" << std::endl;
			return 0;
		}
	}

	std::cout << "impossible" << std::endl;

}

0