結果

問題 No.4 おもりと天秤
ユーザー ssssskkkkkssssskkkkk
提出日時 2017-11-27 19:03:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 648 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 70,836 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-05-05 13:30:15
合計ジャッジ時間 7,138 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 28 ms
5,376 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 30 ms
6,912 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 <iostream>
#include <vector>
#include <string>
#include <numeric>
#include <algorithm>
using namespace std;
typedef pair<int, int> pii;
int N;
bool dp[10001][10001];
string ans = "impossible";
int main(void) {
	cin >> N;
	dp[0][0] = true;
	const int max = 100 * N;
	for (int n = 0; n < N; ++n) {
		int W; cin >> W;
		for (int l = max; l >= 0; --l) {
			for (int r = max; r >= 0; --r) {
				if (max < l + W || max < r + W) continue;
				if (dp[l][r]) {
					dp[l][r + W] = dp[l + W][r] = true;
					dp[l][r] = false;
				}
			}
		}
	}
	for (int n = 1; n <= max; ++n) {
		if (dp[n][n]) ans = "possible";
	}
	cout << ans << endl;
	return 0;
}
0