結果

問題 No.1017 Reiwa Sequence
ユーザー tochiji1tochiji1
提出日時 2020-04-12 00:19:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,064 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 1,529 ms
コンパイル使用メモリ 173,412 KB
実行使用メモリ 129,628 KB
最終ジャッジ日時 2024-07-03 08:51:49
合計ジャッジ時間 45,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
20,732 KB
testcase_01 AC 7 ms
13,792 KB
testcase_02 AC 6 ms
10,296 KB
testcase_03 AC 16 ms
34,860 KB
testcase_04 AC 5 ms
10,360 KB
testcase_05 AC 8 ms
17,240 KB
testcase_06 AC 7 ms
13,744 KB
testcase_07 AC 5 ms
10,184 KB
testcase_08 AC 5 ms
10,248 KB
testcase_09 AC 23 ms
45,496 KB
testcase_10 AC 148 ms
80,704 KB
testcase_11 AC 20 ms
41,972 KB
testcase_12 AC 934 ms
121,792 KB
testcase_13 AC 944 ms
121,324 KB
testcase_14 AC 25 ms
41,996 KB
testcase_15 AC 28 ms
45,604 KB
testcase_16 AC 25 ms
41,996 KB
testcase_17 AC 35 ms
52,912 KB
testcase_18 AC 25 ms
41,936 KB
testcase_19 AC 206 ms
86,448 KB
testcase_20 AC 221 ms
86,396 KB
testcase_21 AC 220 ms
86,520 KB
testcase_22 AC 220 ms
86,360 KB
testcase_23 AC 205 ms
86,364 KB
testcase_24 AC 209 ms
86,376 KB
testcase_25 AC 191 ms
86,364 KB
testcase_26 AC 188 ms
86,456 KB
testcase_27 AC 169 ms
86,420 KB
testcase_28 AC 155 ms
86,376 KB
testcase_29 AC 168 ms
86,164 KB
testcase_30 AC 161 ms
86,092 KB
testcase_31 AC 157 ms
85,272 KB
testcase_32 AC 163 ms
84,512 KB
testcase_33 AC 130 ms
82,364 KB
testcase_34 AC 153 ms
82,352 KB
testcase_35 AC 115 ms
82,272 KB
testcase_36 AC 143 ms
82,340 KB
testcase_37 AC 155 ms
84,312 KB
testcase_38 AC 144 ms
84,288 KB
testcase_39 AC 158 ms
84,324 KB
testcase_40 AC 1,064 ms
128,332 KB
testcase_41 AC 1,039 ms
127,584 KB
testcase_42 AC 1,046 ms
129,628 KB
testcase_43 AC 1,028 ms
128,224 KB
testcase_44 AC 362 ms
101,504 KB
testcase_45 AC 987 ms
126,308 KB
testcase_46 AC 913 ms
126,060 KB
testcase_47 AC 756 ms
123,188 KB
testcase_48 AC 953 ms
120,028 KB
testcase_49 AC 381 ms
99,316 KB
testcase_50 AC 385 ms
100,728 KB
testcase_51 AC 5 ms
6,944 KB
testcase_52 AC 171 ms
86,404 KB
testcase_53 AC 153 ms
86,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);i++)
#define all(x) (x).begin(), (x).end()
using ll = long long;
using namespace std;

int main() {
    int N;
    cin >> N;
    vector<int> A(N);
    rep(i,N) cin >> A[i];
    int C = min(N,22);
    vector<vector<int>> sum(C*150000,vector<int>());

    rep(b,1<<C){
        int tmpsum = 0;
        rep(i,C) if(b&(1<<i)) tmpsum += A[i];
        sum[tmpsum].push_back(b);
    }

    int minSum = C;
    for(auto e:sum) {
        if(e.size() >= 2) {
            cout << "Yes" << endl;
            int b0 = e[0];
            int b1 = e[1];
            rep(i,N){
                if(i>=C) {
                    cout << 0 << " ";
                    continue;
                }
                if(b0&(1<<i)) cout << A[i] << " ";
                else if(b1&(1<<i)) cout << -1*A[i] << " ";
                else cout << 0 << " ";
            }
            cout << endl;
            return 0;
        }
    }
    cout << "No" << endl;
}
0