結果

問題 No.1017 Reiwa Sequence
ユーザー ocatocat
提出日時 2020-04-04 17:36:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 1,286 bytes
コンパイル時間 1,597 ms
コンパイル使用メモリ 169,364 KB
実行使用メモリ 50,076 KB
最終ジャッジ日時 2024-07-03 07:35:39
合計ジャッジ時間 32,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
49,152 KB
testcase_01 AC 14 ms
49,152 KB
testcase_02 AC 13 ms
49,024 KB
testcase_03 AC 14 ms
49,180 KB
testcase_04 AC 14 ms
49,180 KB
testcase_05 AC 14 ms
49,152 KB
testcase_06 AC 14 ms
49,024 KB
testcase_07 AC 14 ms
49,152 KB
testcase_08 AC 14 ms
49,152 KB
testcase_09 AC 14 ms
49,152 KB
testcase_10 AC 15 ms
49,024 KB
testcase_11 AC 15 ms
49,024 KB
testcase_12 AC 20 ms
49,152 KB
testcase_13 AC 20 ms
49,152 KB
testcase_14 AC 13 ms
49,056 KB
testcase_15 AC 13 ms
49,152 KB
testcase_16 AC 15 ms
49,024 KB
testcase_17 AC 15 ms
49,180 KB
testcase_18 AC 15 ms
49,152 KB
testcase_19 AC 17 ms
49,024 KB
testcase_20 AC 17 ms
49,052 KB
testcase_21 AC 18 ms
49,152 KB
testcase_22 AC 18 ms
49,152 KB
testcase_23 AC 17 ms
49,176 KB
testcase_24 AC 17 ms
49,152 KB
testcase_25 AC 17 ms
49,152 KB
testcase_26 AC 17 ms
49,056 KB
testcase_27 AC 16 ms
49,152 KB
testcase_28 AC 17 ms
49,184 KB
testcase_29 AC 15 ms
49,184 KB
testcase_30 AC 16 ms
49,152 KB
testcase_31 AC 16 ms
49,024 KB
testcase_32 AC 16 ms
49,152 KB
testcase_33 AC 15 ms
49,176 KB
testcase_34 AC 16 ms
49,024 KB
testcase_35 AC 15 ms
49,280 KB
testcase_36 AC 15 ms
49,152 KB
testcase_37 AC 17 ms
49,152 KB
testcase_38 AC 13 ms
49,152 KB
testcase_39 AC 16 ms
49,024 KB
testcase_40 AC 55 ms
49,536 KB
testcase_41 AC 56 ms
49,536 KB
testcase_42 AC 54 ms
49,664 KB
testcase_43 AC 57 ms
49,664 KB
testcase_44 AC 54 ms
49,564 KB
testcase_45 AC 58 ms
49,564 KB
testcase_46 AC 54 ms
49,536 KB
testcase_47 AC 53 ms
49,536 KB
testcase_48 AC 75 ms
50,076 KB
testcase_49 AC 76 ms
50,076 KB
testcase_50 AC 78 ms
50,048 KB
testcase_51 AC 14 ms
49,152 KB
testcase_52 AC 16 ms
49,152 KB
testcase_53 AC 15 ms
49,184 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 DPMX = 4194304;
const int REVMX = 3300001;
ll dp[DPMX];
int rev[REVMX];

int main() {
    fill_n(dp, DPMX, 0);
    fill_n(rev, REVMX, -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" : " ");
        }
        assert(accumulate(ans.begin(), ans.end(), 0) == 0);
    }
    return 0;
}
0