結果

問題 No.1017 Reiwa Sequence
ユーザー kappybarkappybar
提出日時 2020-04-06 21:29:20
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 787 ms / 2,000 ms
コード長 1,158 bytes
コンパイル時間 1,956 ms
コンパイル使用メモリ 179,428 KB
実行使用メモリ 69,248 KB
最終ジャッジ日時 2024-07-03 08:37:42
合計ジャッジ時間 46,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 6 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 12 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 671 ms
68,992 KB
testcase_20 AC 694 ms
68,992 KB
testcase_21 AC 722 ms
68,992 KB
testcase_22 AC 700 ms
68,992 KB
testcase_23 AC 596 ms
68,992 KB
testcase_24 AC 584 ms
68,992 KB
testcase_25 AC 540 ms
69,120 KB
testcase_26 AC 480 ms
68,992 KB
testcase_27 AC 429 ms
45,568 KB
testcase_28 AC 520 ms
52,736 KB
testcase_29 AC 10 ms
6,940 KB
testcase_30 AC 18 ms
6,944 KB
testcase_31 AC 52 ms
11,776 KB
testcase_32 AC 248 ms
36,224 KB
testcase_33 AC 7 ms
6,940 KB
testcase_34 AC 271 ms
36,224 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 292 ms
36,096 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 278 ms
36,224 KB
testcase_40 AC 787 ms
69,248 KB
testcase_41 AC 708 ms
69,120 KB
testcase_42 AC 757 ms
69,120 KB
testcase_43 AC 732 ms
69,248 KB
testcase_44 AC 37 ms
6,940 KB
testcase_45 AC 717 ms
69,248 KB
testcase_46 AC 629 ms
69,120 KB
testcase_47 AC 507 ms
69,120 KB
testcase_48 AC 60 ms
6,940 KB
testcase_49 AC 59 ms
6,944 KB
testcase_50 AC 62 ms
6,944 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 680 ms
68,608 KB
testcase_53 AC 110 ms
19,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using ll =  long long ;
using P = pair<int,int> ;
const int INF = 1e9;
const int MOD = 1000000007;

int main(){
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    int k = min(n,22);
    vector<bool> ans;
    int s_sum;
    bool ok = false;
    map<int,vector<bool>> sum;
    rep(bit,1<<k){
        int s = 0;
        vector<bool> flg(k,false);
        rep(i,k){
            if(bit >> i & 1){
                s += a[i];
                flg[i] = true;
            }
        }
        if(sum.find(s) == sum.end()) sum[s] = flg;
        else{
            ans = flg;
            s_sum = s;
            ok = true;
            break;
        }
    }
    if(!ok){
        cout << "No" << endl;
        return 0;
    }
    else{
        cout << "Yes" << endl;
    }

    rep(i,k){
        if(ans[i] && sum[s_sum][i]) a[i] = 0;
        else if(ans[i]);
        else if(sum[s_sum][i]) a[i] = -a[i];
        else a[i] = 0;
    }

    if(k != n){
        for(int i=k;i<n;i++) a[i] = 0;
    }

    rep(i,n) cout << a[i] << " ";
    cout << endl;

    return 0;
}
0