結果

問題 No.1017 Reiwa Sequence
ユーザー pockynypockyny
提出日時 2020-04-04 16:14:15
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 936 bytes
コンパイル時間 686 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-07-03 07:24:08
合計ジャッジ時間 34,587 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
81,740 KB
testcase_01 AC 46 ms
81,632 KB
testcase_02 AC 46 ms
81,792 KB
testcase_03 AC 46 ms
81,792 KB
testcase_04 AC 45 ms
81,628 KB
testcase_05 AC 45 ms
81,708 KB
testcase_06 AC 57 ms
81,664 KB
testcase_07 AC 45 ms
81,744 KB
testcase_08 AC 46 ms
81,792 KB
testcase_09 AC 46 ms
81,792 KB
testcase_10 AC 47 ms
81,884 KB
testcase_11 AC 46 ms
81,664 KB
testcase_12 AC 48 ms
81,760 KB
testcase_13 AC 46 ms
81,764 KB
testcase_14 AC 46 ms
81,664 KB
testcase_15 AC 52 ms
81,708 KB
testcase_16 AC 48 ms
81,752 KB
testcase_17 AC 51 ms
82,272 KB
testcase_18 AC 47 ms
81,732 KB
testcase_19 AC 181 ms
97,968 KB
testcase_20 AC 186 ms
97,960 KB
testcase_21 AC 193 ms
98,044 KB
testcase_22 AC 191 ms
97,960 KB
testcase_23 AC 184 ms
98,140 KB
testcase_24 AC 184 ms
98,156 KB
testcase_25 AC 179 ms
98,048 KB
testcase_26 AC 170 ms
98,060 KB
testcase_27 AC 137 ms
92,264 KB
testcase_28 AC 146 ms
93,908 KB
testcase_29 AC 49 ms
82,056 KB
testcase_30 AC 51 ms
82,528 KB
testcase_31 AC 64 ms
83,840 KB
testcase_32 AC 112 ms
89,984 KB
testcase_33 AC 47 ms
81,972 KB
testcase_34 AC 117 ms
89,888 KB
testcase_35 AC 46 ms
81,744 KB
testcase_36 AC 47 ms
81,764 KB
testcase_37 AC 119 ms
89,856 KB
testcase_38 AC 47 ms
81,792 KB
testcase_39 AC 120 ms
89,812 KB
testcase_40 AC 224 ms
98,504 KB
testcase_41 AC 225 ms
98,560 KB
testcase_42 AC 225 ms
98,456 KB
testcase_43 AC 219 ms
98,544 KB
testcase_44 AC 80 ms
82,132 KB
testcase_45 AC 222 ms
98,560 KB
testcase_46 AC 206 ms
98,476 KB
testcase_47 AC 186 ms
98,432 KB
testcase_48 AC 103 ms
82,432 KB
testcase_49 AC 103 ms
82,304 KB
testcase_50 AC 107 ms
82,304 KB
testcase_51 AC 46 ms
81,756 KB
testcase_52 AC 185 ms
97,956 KB
testcase_53 AC 76 ms
85,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int a[150010];
vector<int> v[3340000];
int main(){
    int i,j,n,m;
    cin >> n;
    for(i=0;i<n;i++){
        cin >> a[i];
    }
    m = n;
    n = min(n,22);
    int val = -1;
    for(i=0;i<(1<<n);i++){
        int res = 0;
        for(j=0;j<n;j++){
            if(i & (1<<j)){
                res += a[j];
            }
        }
        int s = v[res].size();
        v[res].push_back(i);
        if(s==1){
            val = res;
            break;
        }
    }
    if(val==-1){
        cout << "No" << endl;
        return 0;
    }
    cout << "Yes" << endl;
    for(i=0;i<m;i++){
        if(i<n){
            int s = v[val][0]&(1<<i),t = v[val][1]&(1<<i);
            if(s && !t) cout << a[i] << " ";
            else if(!s && t) cout << -a[i] << " ";
            else cout << 0 << " ";
        }else{
            cout << 0 << " ";
        }
    }
    cout << endl;
}
0