結果

問題 No.4 おもりと天秤
ユーザー nksk38nksk38
提出日時 2017-06-27 22:47:26
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,028 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-04 13:41:59
合計ジャッジ時間 1,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<cstdio>
#include <iostream>
#include<algorithm>
#include<string>
#include<queue>
#include<vector>
#include<functional>
#include<cmath>
#include<map>
#include<stack>
#include<set>
#include<numeric>

#define mod 1000000007;

using namespace std;
typedef long long ll;
typedef pair<ll, ll> Pr;

int N,k;
int w[110];
int dp[101][10001];
int used[110];


int main()
{
	cin >> N;

	ll sum = 0;
	for (int i = 0; i < N; i++) {
		cin >> w[i];
		sum += w[i];
	}

	k = sum / 2;
	if (sum % 2 != 0) {
		cout << "impossible" << endl;
		return 0;
	}

	int ans = 0;
	for (int i = 0; i < N; i++) {
		for (int j = 1; j <= 10000; j++) {
			if (j >= w[i] && j <= k) {
				dp[i + 1][j] = dp[i][j];
				if (dp[i + 1][j] < dp[i][j - w[i]] + 1) {
					dp[i + 1][j] = dp[i][j - w[i]] + 1;
					used[i] = 1;
				}
			}
			else if (j < w[i] && j <= k) {
				dp[i + 1][j] = dp[i][j];
			}
		}
	}
	for (int i = 0; i < N; i++) {
		if (used[i])ans += w[i];
	}
	if (ans == k)cout << "possible" << endl;
	else cout << "impossible" << endl;
	return 0;
}
0