結果

問題 No.4 おもりと天秤
ユーザー H ShibusawaH Shibusawa
提出日時 2020-10-29 15:23:38
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 1,561 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 136,452 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-29 03:59:59
合計ジャッジ時間 3,036 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 22 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 25 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 29 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 13 ms
4,380 KB
testcase_19 AC 23 ms
4,376 KB
testcase_20 AC 19 ms
4,376 KB
testcase_21 AC 19 ms
4,380 KB
testcase_22 AC 23 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define rep(i,n) for(int i=0; i<(int)n; i++)
#define rep1(i,n) for(int i=1; i<(int)n; i++)
#define repa(i,a,n) for(int i=(a); i<(int)(n); i++)
#define all(vec) vec.begin(),vec.end()
#define COUT(x) cout<<(x)<<endl
#define YES(x) cout<<(x?"YES":"NO")<<endl
#define Yes(x) cout<<(x?"Yes":"No")<<endl
using vi = vector<int>;
using vs = vector<string>;
using vvi = vector<vi>;
using pii = pair<int, int>;
using vpii = vector<pii>;
const int dx[4] = {1, 0,-1, 0};
const int dy[4] = {0, 1, 0,-1};
int gcd(int a, int b){if(a%b == 0){return(b);}else{return(gcd(b, a%b));}}
int lcm(int a, int b){return a/gcd(a, b)*b;}
template <typename T> bool chmax(T &a,const T& b){if(a<b){a=b;return true;}return false;}
template <typename T> bool chmin(T &a,const T& b){if(a>b){a=b;return true;}return false;}
//cout << fixed << setprecision(15);
int N, M, K, H, W, L, R, X, Y;
// string S, T;
const int INF = 1e18;
const int mod = 1e9+7;

signed main(){
    cin >> N;
    int ttlmas = 0;
    vi W(N);
    rep(i,N){
        cin >> W[i];
        ttlmas += W[i]; 
    }
    if(ttlmas%2 != 0){
        COUT("impossible");
        return 0;
    }else ttlmas /= 2;

    set<int> st1;
    set<int> st2;
    rep(i,N){
        st2 = st1;
        for(int a : st2){
            st1.insert(a+W[i]);
        }
        st1.insert(W[i]);
    }
    bool chk = false;
    for(int a : st2){
        if(a == ttlmas){
            chk = true;
            break;
        }
    }
    COUT(chk? "possible":"impossible");
    return 0;
}
0