結果

問題 No.4 おもりと天秤
コンテスト
ユーザー SakaTaku
提出日時 2020-08-28 23:57:41
言語 C++14
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 2 ms / 5,000 ms
+ 414µs
コード長 522 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 809 ms
コンパイル使用メモリ 180,888 KB
実行使用メモリ 9,924 KB
最終ジャッジ日時 2026-09-21 22:54:43
合計ジャッジ時間 2,730 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i = 0; i < n; ++i)
using ll = long long;
const int SIZE=10000;
bool dp[SIZE+1];
int main() {
   int N;cin>>N;
   int sum=0;
   dp[0]=true;
   rep(i,N){
      int wi;cin>>wi;
      sum+=wi;
      for (int i = SIZE; i >= 0; i--)
      {
         if(i+wi>SIZE)continue;
         if(dp[i])dp[i+wi]=true;
      }
   }
   if(sum%2==1)cout<<"impossible"<<endl;
   else {
      if(dp[sum/2])cout<<"possible"<<endl;
      else cout<<"impossible"<<endl;
   }
}
0