結果
問題 |
No.4 おもりと天秤
|
ユーザー |
|
提出日時 | 2021-01-02 20:19:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 780 bytes |
コンパイル時間 | 1,678 ms |
コンパイル使用メモリ | 169,912 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 10:24:22 |
合計ジャッジ時間 | 2,483 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) #define chmin(x,y) x = min((x),(y)); #define chmax(x,y) x = max((x),(y)); using namespace std; using ll = long long ; using P = pair<int,int> ; using pll = pair<long long,long long>; const int INF = 1e9; const long long LINF = 1e17; const int MOD = 1000000007; //const int MOD = 998244353; const double PI = 3.14159265358979323846; int main(){ int n; cin >> n; vector<int> w(n); rep(i,n) cin >> w[i]; bitset<100005> dp; dp[0] = 1; int W = 0; rep(i,n) W += w[i]; rep(i,n){ dp = (dp|dp<<w[i]); } if(W%2==1) cout << "impossible" << endl; else{ if(dp[W/2]) cout << "possible" << endl; else cout << "impossible" << endl; } return 0; }