結果

問題 No.4 おもりと天秤
ユーザー autumn-eelautumn-eel
提出日時 2016-12-30 22:21:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 547 bytes
コンパイル時間 1,868 ms
コンパイル使用メモリ 166,216 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-05-09 14:23:17
合計ジャッジ時間 4,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
#define MOD 1000000007
#define INF 0x3f3f3f3f
#define INFL 0x3f3f3f3f3f3f3f3f
#define EPS (1e-10)
#define rep(i,n)for(int i=0;i<n;i++)
using namespace std;
typedef long long ll;
typedef pair<int, int>P;

bool dp[100][30000];
int d[100];
int main() {
	int n; scanf("%d", &n);
	rep(i, n)scanf("%d", &d[i]);
	dp[0][15000] = 1;
	rep(i, n) {
		rep(j, 30000) {
			if (j + d[i] < 30000)dp[i + 1][j + d[i]] |= dp[i][j];
			if (j - d[i] >= 0)dp[i + 1][j - d[i]] |= dp[i][j];
		}
	}
	puts(dp[n][15000] ? "possible" : "impossible");
}
0