結果

問題 No.4 おもりと天秤
ユーザー shossiissohsshossiissohs
提出日時 2018-01-10 17:00:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,734 ms / 5,000 ms
コード長 555 bytes
コンパイル時間 1,367 ms
コンパイル使用メモリ 158,152 KB
実行使用メモリ 45,440 KB
最終ジャッジ日時 2024-06-26 10:28:19
合計ジャッジ時間 39,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 16 ms
5,248 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 19 ms
7,040 KB
testcase_05 AC 3,734 ms
39,168 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3,716 ms
39,680 KB
testcase_08 AC 3,577 ms
5,376 KB
testcase_09 AC 3,708 ms
5,376 KB
testcase_10 AC 3,702 ms
45,440 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3,709 ms
20,096 KB
testcase_19 AC 3,696 ms
34,176 KB
testcase_20 AC 3,717 ms
34,176 KB
testcase_21 AC 3,712 ms
31,360 KB
testcase_22 AC 3,706 ms
32,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

bool dp[10001][10001];

int n;
int main() {
  cin >> n;

  dp[0][0] = true;

  int sum = 0;
  for(int i = 0; i < n; i++) {
    int w;
    cin >> w;
    sum += w;
    for(int j = i * 100; j >= 0; j--) {
      for(int k = i * 100; k >= 0; k--) {
	if(dp[j][k]) {
	  dp[j+w][k] = dp[j][k+w] = true;
	}
      }
    }
  }
  for(int i = 1; i < 10001; i++) {
    if(dp[i][i] && i + i == sum) {
      // cout << i << endl;
      cout << "possible" << endl;
      return 0;
    }
  }
  cout << "impossible" <<endl;
}
0