結果

問題 No.4 おもりと天秤
ユーザー ikeyanabcd894ikeyanabcd894
提出日時 2019-04-30 09:56:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 1,245 ms
コンパイル使用メモリ 158,836 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 16:29:21
合計ジャッジ時間 2,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int N;
vector<int> W(110);
bool memo[110][10009];

int main(){
  cin >> N;
  int sum=0;
  for(int i=1;i<=N;i++){cin >> W[i]; sum+=W[i];}
  if(sum%2==1){cout << "impossible" << endl; return 0;}
  int n=sum/2;
  memo[0][0]=1;
  for(int i=1;i<=N;i++){
    for(int j=0;j<=n;j++){
      memo[i][j]|=memo[i-1][j];
      if(j-W[i]>=0){memo[i][j]|=memo[i-1][j-W[i]];}
    }
  }
  if(memo[N][n]){cout << "possible" << endl;}
  else{cout << "impossible" << endl;}
}
0