結果

問題 No.1017 Reiwa Sequence
ユーザー ocatocat
提出日時 2020-04-04 17:30:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,187 bytes
コンパイル時間 1,563 ms
コンパイル使用メモリ 168,972 KB
実行使用メモリ 43,756 KB
最終ジャッジ日時 2024-07-03 07:33:27
合計ジャッジ時間 36,623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
43,368 KB
testcase_01 AC 13 ms
43,368 KB
testcase_02 AC 13 ms
43,264 KB
testcase_03 AC 13 ms
43,368 KB
testcase_04 AC 13 ms
43,136 KB
testcase_05 AC 15 ms
43,264 KB
testcase_06 AC 12 ms
43,264 KB
testcase_07 AC 12 ms
43,264 KB
testcase_08 AC 13 ms
43,136 KB
testcase_09 AC 13 ms
43,264 KB
testcase_10 AC 13 ms
43,264 KB
testcase_11 AC 13 ms
43,264 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 12 ms
43,392 KB
testcase_15 AC 13 ms
43,136 KB
testcase_16 AC 13 ms
43,264 KB
testcase_17 AC 14 ms
43,264 KB
testcase_18 AC 13 ms
43,136 KB
testcase_19 AC 16 ms
43,264 KB
testcase_20 AC 16 ms
43,264 KB
testcase_21 AC 16 ms
43,368 KB
testcase_22 AC 17 ms
43,264 KB
testcase_23 AC 17 ms
43,264 KB
testcase_24 AC 15 ms
43,264 KB
testcase_25 AC 17 ms
43,264 KB
testcase_26 AC 16 ms
43,264 KB
testcase_27 AC 15 ms
43,264 KB
testcase_28 AC 17 ms
43,264 KB
testcase_29 AC 15 ms
43,264 KB
testcase_30 AC 15 ms
43,372 KB
testcase_31 AC 14 ms
43,264 KB
testcase_32 AC 15 ms
43,372 KB
testcase_33 AC 14 ms
43,264 KB
testcase_34 AC 15 ms
43,136 KB
testcase_35 AC 14 ms
43,136 KB
testcase_36 AC 14 ms
43,264 KB
testcase_37 AC 16 ms
43,264 KB
testcase_38 AC 14 ms
43,364 KB
testcase_39 AC 17 ms
43,264 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 AC 13 ms
43,368 KB
testcase_52 AC 15 ms
43,372 KB
testcase_53 AC 13 ms
43,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int MX = 3400000;
ll dp[MX];
int rev[MX];

int main() {
    fill_n(dp, MX, 0);
    fill_n(rev, MX, -1);

    int N;
    cin >> N;
    vector<int> A(N);
    for (int i=0; i<N; ++i) cin >> A[i];

    int M = min(N, 22);
    for (int i=1; i<=M; ++i) {
        int l = 1 << (i-1);
        int r = 1 << i;
        for (int j=l; j<r; ++j) {
            dp[j] = dp[j - l] + A[i-1];
        }
    }

    int S = -1, T;
    for (int i=1; i<(1<<M); ++i) {
        if (rev[dp[i]] >= 0) {
            S = rev[dp[i]];
            T = i;
            break;
        }
        rev[dp[i]] = i;
    }

    if (S < 0) {
        cout << "No" << endl;
    } else {
        vector<int> ans(N, 0);
        for (int i=0; i<M; ++i) {
            bool sb = (S >> i) & 1;
            bool tb = (T >> i) & 1;
            if ( ! (sb ^ tb)) continue;
            else if (sb) ans[i] = A[i] * (-1);
            else if (tb) ans[i] = A[i];
        }
        cout << "Yes" << endl;
        for (int i=0; i<N; ++i) {
            cout << ans[i] << (i == N-1 ? "\n" : " ");
        }
    }
    return 0;
}
0