結果

問題 No.4 おもりと天秤
ユーザー pinpin
提出日時 2016-12-27 11:57:00
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 757 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 54,516 KB
実行使用メモリ 7,372 KB
最終ジャッジ日時 2024-05-08 19:09:41
合計ジャッジ時間 2,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,248 KB
testcase_01 AC 4 ms
7,328 KB
testcase_02 AC 4 ms
7,216 KB
testcase_03 AC 4 ms
7,288 KB
testcase_04 AC 4 ms
7,328 KB
testcase_05 RE -
testcase_06 AC 4 ms
7,372 KB
testcase_07 RE -
testcase_08 AC 4 ms
7,252 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 4 ms
7,056 KB
testcase_12 AC 4 ms
7,364 KB
testcase_13 AC 4 ms
7,116 KB
testcase_14 AC 4 ms
7,196 KB
testcase_15 AC 3 ms
7,208 KB
testcase_16 AC 3 ms
7,316 KB
testcase_17 AC 4 ms
7,288 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstring>
using namespace std;
int dp[100][10000] ;
int N,w[100] ,sum = 0 ;
int eql(int i,int j){
     //iは添え字jはi以降の重さの総和
     if(dp[i][j]>=0) return dp[i][j] ;
     int res ;
     if(i==N){
          res = 0 ;
     }else if(j==w[i]){
          res = 1 ;
     }else{
          res = max(eql(i+1,j-w[i]),eql(i+1,j)) ;
     }
     return dp[i][j] = res ;
}


int main(void){
     
     cin >> N ;
     for(int i=0;i<N;i++){
          cin >> w[i] ;
          sum += w[i] ;
     }
     memset(dp,-1,sizeof(dp)) ;
     if(sum%2==0){
          sum /= 2 ;
          if(eql(0,sum)==1) cout << "possible" ;
          else cout << "impossible" ;
     }else{
          cout << "impossible" ;
     }
     
    
}

0