結果
問題 | No.4 おもりと天秤 |
ユーザー | shihu |
提出日時 | 2024-09-25 21:12:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,344 bytes |
コンパイル時間 | 5,494 ms |
コンパイル使用メモリ | 301,016 KB |
実行使用メモリ | 11,368 KB |
最終ジャッジ日時 | 2024-09-25 21:12:25 |
合計ジャッジ時間 | 7,554 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 104 ms
7,680 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 101 ms
7,552 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 193 ms
11,368 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 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 107 ms
7,424 KB |
testcase_19 | AC | 94 ms
7,268 KB |
testcase_20 | AC | 92 ms
7,040 KB |
testcase_21 | AC | 84 ms
6,944 KB |
testcase_22 | AC | 89 ms
7,048 KB |
ソースコード
// #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using mint = modint998244353; // using mint = modint1000000007; using ll = long long; using ull = unsigned long long; using ld = long double; using pii = pair<int, int>; using pll = pair<ll, ll>; using T = tuple<int, int, int>; using G = vector<vector<int>>; #define rep(i, n) for (ll i = 0; i < (n); ++i) #define rep2(i, a, b) for (ll i = a; i < (b); ++i) #define rrep2(i, a, b) for (ll i = a-1; i >= (b); --i) #define rep3(i, a, b, c) for (ll i = a; i < (b); i+=c) #define rng(a) a.begin(),a.end() #define rrng(a) a.rbegin(),a.rend() #define popcount __builtin_popcount #define popcountll __builtin_popcountll #define fi first #define se second #define UNIQUE(v) sort(rng(v)), v.erase(unique(rng(v)), v.end()) #define MIN(v) *min_element(rng(v)) #define MAX(v) *max_element(rng(v)) template<class T> bool chmin(T &a,T b){if(a>b){a=b;return 1;}else return 0;} template<class T> bool chmax(T &a,T b){if(a<b){a=b;return 1;}else return 0;} template<class T> void printv(vector<T> &v){rep(i,v.size())cout<<v[i]<<" \n"[i==v.size()-1];} template<class T> void printvv(vector<vector<T>> &v){rep(i,v.size())rep(j,v[i].size())cout<<v[i][j]<<" \n"[j==v[i].size()-1];cout<<endl;} const ll dx[] = {0, 1, 0, -1}; const ll dy[] = {1, 0, -1, 0}; const ll dxx[] = {0, 1, 0, -1, 1, -1, 1, -1}; const ll dyy[] = {1, 0, -1, 0, 1, 1, -1, -1}; const ll LINF = 1001002003004005006ll; const int INF = 1001001001; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; vector<int> a(n); rep(i, n) cin >> a[i]; int sum = 0; rep(i, n) sum += a[i]; if (sum&1){ cout << "impossible" << endl; return 0; } sum /= 2; vector<vector<ll>> dp(sum+1, vector<ll>(n+1)); dp[0][0] = 1; rep(i, n){ vector<vector<ll>> pre(sum+1, vector<ll>(n+1)); swap(pre, dp); rep(j, sum+1){ int nj = j+a[i]; rep(k, n+1){ if (nj <= sum && k < n) dp[nj][k+1] += pre[j][k]; dp[j][k] += pre[j][k]; } } } ll ans = 0; rep(i, n+1) ans += dp[sum][i]; cout << (ans >= 2 ? "possible" : "impossible") << endl; return 0; }