結果

問題 No.4 おもりと天秤
ユーザー cww
提出日時 2017-09-23 13:32:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 815 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 198,016 KB
最終ジャッジ日時 2025-01-05 03:00:40
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i=0; i<(n); i++)
#define REP2(i,x,n) for(int i=x; i<(n); i++)
#define ALL(n) begin(n),end(n)
struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star;
// 配るDP編
int main()
{
    int N;
    cin >> N;
    vector<int> vc( N );
    for( auto &x : vc )
    {
        cin >> x;
    }
    int total = accumulate( ALL( vc ), 0 );
    vector<vector<int>> dp( 100 + 1, vector<int>( 10000 + 1 ) );
    dp[ 0 ][ 0 ] = 1;
    for( int i = 0; i < N; i++ )
    {
        for( int j = 0; j <= total; j++ )
        {
            dp[ i + 1 ][ j ] |= dp[ i ][ j ];
            dp[ i + 1 ][ j + vc[ i + 1 ] ] |= dp[ i ][ j ];
        }
    }
    cout << ( dp[ N - 1 ][ total / 2 ] && total % 2 == 0 ? "possible" : "impossible" ) << endl;
    return 0;
}
0