結果

問題 No.1017 Reiwa Sequence
ユーザー MisterMister
提出日時 2020-04-03 22:03:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 810 ms
コンパイル使用メモリ 78,660 KB
実行使用メモリ 20,004 KB
最終ジャッジ日時 2024-07-03 02:53:41
合計ジャッジ時間 34,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
18,672 KB
testcase_01 AC 10 ms
18,816 KB
testcase_02 AC 10 ms
18,688 KB
testcase_03 AC 10 ms
18,816 KB
testcase_04 AC 7 ms
18,688 KB
testcase_05 AC 6 ms
18,816 KB
testcase_06 AC 11 ms
18,816 KB
testcase_07 AC 9 ms
18,676 KB
testcase_08 AC 7 ms
18,804 KB
testcase_09 AC 7 ms
18,672 KB
testcase_10 AC 6 ms
18,704 KB
testcase_11 AC 9 ms
18,808 KB
testcase_12 AC 10 ms
18,688 KB
testcase_13 AC 10 ms
18,816 KB
testcase_14 AC 11 ms
18,816 KB
testcase_15 AC 6 ms
18,688 KB
testcase_16 AC 11 ms
18,688 KB
testcase_17 AC 12 ms
18,816 KB
testcase_18 AC 7 ms
18,836 KB
testcase_19 AC 40 ms
18,816 KB
testcase_20 AC 41 ms
18,816 KB
testcase_21 AC 49 ms
18,816 KB
testcase_22 AC 48 ms
18,688 KB
testcase_23 AC 48 ms
18,944 KB
testcase_24 AC 49 ms
18,688 KB
testcase_25 AC 47 ms
18,844 KB
testcase_26 AC 45 ms
18,688 KB
testcase_27 AC 36 ms
18,880 KB
testcase_28 AC 36 ms
18,688 KB
testcase_29 AC 11 ms
18,816 KB
testcase_30 AC 12 ms
18,704 KB
testcase_31 AC 15 ms
18,816 KB
testcase_32 AC 28 ms
18,668 KB
testcase_33 AC 10 ms
18,816 KB
testcase_34 AC 29 ms
18,688 KB
testcase_35 AC 10 ms
18,796 KB
testcase_36 AC 10 ms
18,872 KB
testcase_37 AC 30 ms
18,816 KB
testcase_38 AC 7 ms
18,816 KB
testcase_39 AC 25 ms
18,816 KB
testcase_40 AC 67 ms
19,540 KB
testcase_41 AC 68 ms
19,584 KB
testcase_42 AC 68 ms
19,400 KB
testcase_43 AC 66 ms
19,644 KB
testcase_44 AC 25 ms
19,584 KB
testcase_45 AC 65 ms
19,612 KB
testcase_46 AC 65 ms
19,584 KB
testcase_47 AC 62 ms
19,552 KB
testcase_48 AC 35 ms
19,852 KB
testcase_49 AC 35 ms
19,852 KB
testcase_50 AC 37 ms
20,004 KB
testcase_51 AC 11 ms
18,688 KB
testcase_52 AC 45 ms
18,816 KB
testcase_53 AC 20 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>

constexpr int X = 4000000;

void solve() {
    int n;
    std::cin >> n;

    std::vector<int> xs(n);
    for (auto& x : xs) std::cin >> x;

    int m = std::min(n, 22);
    std::vector<int> idxs(X, -1), ss(n, 0);
    bool ok = false;

    for (int b = 0; b < (1 << m); ++b) {
        int s = 0;
        for (int i = 0; i < m; ++i) {
            if ((b >> i) & 1) s += xs[i];
        }

        if (idxs[s] == -1) {
            idxs[s] = b;
        } else {
            for (int i = 0; i < m; ++i) {
                if ((idxs[s] >> i) & 1) ss[i] = 1;
            }
            for (int i = 0; i < m; ++i) {
                if ((b >> i) & 1) {
                    ss[i] = (ss[i] == 1 ? 0 : -1);
                }
            }

            ok = true;
            break;
        }
    }

    if (!ok) {
        std::cout << "No" << std::endl;
    } else {
        std::cout << "Yes" << std::endl;
        for (int i = 0; i < n; ++i) std::cout << xs[i] * ss[i] << " ";
        std::cout << std::endl;
    }
}

int main() {
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0