結果

問題 No.4 おもりと天秤
ユーザー ngtkanangtkana
提出日時 2020-04-08 00:11:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 675 bytes
コンパイル時間 1,891 ms
コンパイル使用メモリ 203,572 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-07-08 10:04:08
合計ジャッジ時間 3,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,528 KB
testcase_01 AC 9 ms
6,392 KB
testcase_02 AC 15 ms
6,524 KB
testcase_03 AC 12 ms
6,392 KB
testcase_04 AC 16 ms
6,392 KB
testcase_05 AC 73 ms
6,400 KB
testcase_06 AC 6 ms
6,400 KB
testcase_07 AC 75 ms
6,392 KB
testcase_08 AC 74 ms
6,524 KB
testcase_09 AC 75 ms
6,528 KB
testcase_10 AC 77 ms
6,400 KB
testcase_11 AC 11 ms
6,400 KB
testcase_12 AC 8 ms
6,400 KB
testcase_13 AC 8 ms
6,400 KB
testcase_14 AC 8 ms
6,400 KB
testcase_15 AC 7 ms
6,392 KB
testcase_16 AC 12 ms
6,392 KB
testcase_17 AC 10 ms
6,272 KB
testcase_18 AC 75 ms
6,392 KB
testcase_19 AC 76 ms
6,528 KB
testcase_20 AC 77 ms
6,400 KB
testcase_21 AC 77 ms
6,524 KB
testcase_22 AC 75 ms
6,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define ALL(v) std::begin(v),std::end(v)
using lint=long long;
using ld=long double;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint max=100'000;
    std::vector<lint>dp(2*max+1,false);
    dp.at(max)=true;
    lint n;std::cin>>n;
    while(n--){
        lint x;std::cin>>x;
        std::vector<lint>swp(2*max+1,false);
        for(lint i=0;i<=2*max;i++){
            if(x<=i)swp.at(i-x)|=dp.at(i);
            if(i<=2*max-x)swp.at(i+x)|=dp.at(i);
        }
        swp.swap(dp);
    }
    std::cout<<(dp.at(max)?"possible":"impossible")<<'\n';
}
0