結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
31,488 KB
testcase_01 AC 3 ms
32,640 KB
testcase_02 AC 33 ms
8,960 KB
testcase_03 AC 12 ms
10,496 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 TLE -
testcase_06 AC 2 ms
20,096 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 6 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 7 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

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