結果
問題 | No.4 おもりと天秤 |
ユーザー |
![]() |
提出日時 | 2017-10-15 01:16:16 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 604 bytes |
コンパイル時間 | 1,471 ms |
コンパイル使用メモリ | 158,940 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 10:23:40 |
合計ジャッジ時間 | 2,139 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i, n) for(int i = 0; i < (n); i++) #define MEM(a, x) memset(a, x, sizeof(a)) #define ALL(a) a.begin(), a.end() #define UNIQUE(a) a.erase(unique(ALL(a)), a.end()) typedef long long ll; int n; bool dp[10005]; int main(int argc, char const *argv[]) { ios_base::sync_with_stdio(false); cin >> n; int sum = 0; dp[0] = true; FOR(i, n) { int w; cin >> w; for (int j = 10000; j >= 0; j--) { if (j+w <= 10000) dp[j+w] = dp[j+w] || dp[j]; } sum += w; } cout << (sum & 1 || !dp[sum/2] ? "impossible" : "possible") << endl; return 0; }