結果

問題 No.4 おもりと天秤
ユーザー 0w10w1
提出日時 2016-11-20 13:53:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 677 bytes
コンパイル時間 1,756 ms
コンパイル使用メモリ 171,976 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-05-05 10:41:45
合計ジャッジ時間 2,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 11 ms
11,136 KB
testcase_10 WA -
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 WA -
testcase_17 WA -
testcase_18 AC 12 ms
11,264 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const string msg[] = { "impossible", "possible" };

signed main(){
  int N; cin >> N;
  vector< int > W( N );
  for( int i = 0; i < N; ++i )
    cin >> W[ i ];
  int maxw = *max_element( W.begin(), W.end() );
  int maxws = maxw * N;
  vector< vector< int > > dp( N + 1, vector< int >( 2 * ( maxws + 1 ) ) );
  dp[ 0 ][ maxws ] = 1;
  for( int i = 0; i < N; ++i )
    for( int j = 0; j <= 2 * maxws; ++j ){
      if( j + W[ i ] <= 2 * maxws )
        dp[ i + 1 ][ j + W[ i ] ] |= dp[ i ][ j ];
      if( 0 <= j - W[ i ] )
        dp[ i + 1 ][ j - W[ i ] ] |= dp[ i ][ j ];
    }
  cout << msg[ dp[ N ][ 0 ] ] << endl;
  return 0;
}
0