結果

問題 No.1017 Reiwa Sequence
ユーザー finefine
提出日時 2020-04-04 00:38:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 1,132 bytes
コンパイル時間 1,528 ms
コンパイル使用メモリ 175,436 KB
実行使用メモリ 44,160 KB
最終ジャッジ日時 2024-07-03 06:40:55
合計ジャッジ時間 34,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 13 ms
19,844 KB
testcase_13 AC 12 ms
19,584 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 277 ms
29,824 KB
testcase_20 AC 339 ms
29,824 KB
testcase_21 AC 332 ms
29,824 KB
testcase_22 AC 316 ms
29,696 KB
testcase_23 AC 283 ms
29,824 KB
testcase_24 AC 251 ms
29,696 KB
testcase_25 AC 243 ms
29,824 KB
testcase_26 AC 214 ms
29,824 KB
testcase_27 AC 170 ms
21,120 KB
testcase_28 AC 213 ms
23,552 KB
testcase_29 AC 7 ms
5,760 KB
testcase_30 AC 11 ms
6,272 KB
testcase_31 AC 26 ms
8,320 KB
testcase_32 AC 108 ms
17,408 KB
testcase_33 AC 6 ms
5,632 KB
testcase_34 AC 96 ms
17,536 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 4 ms
5,376 KB
testcase_37 AC 113 ms
17,408 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 124 ms
17,536 KB
testcase_40 AC 323 ms
44,048 KB
testcase_41 AC 303 ms
44,160 KB
testcase_42 AC 332 ms
44,160 KB
testcase_43 AC 291 ms
44,160 KB
testcase_44 AC 15 ms
19,580 KB
testcase_45 AC 289 ms
44,032 KB
testcase_46 AC 283 ms
44,040 KB
testcase_47 AC 227 ms
44,160 KB
testcase_48 AC 20 ms
19,700 KB
testcase_49 AC 18 ms
19,456 KB
testcase_50 AC 19 ms
19,584 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 250 ms
29,696 KB
testcase_53 AC 52 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    int n = min(N, 22);
    vector<int> a(n);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }

    vector<int> dp(1 << n, 0);
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < (1 << i); ++j) {
            dp[j | (1 << i)] = dp[j] + a[i];
        }
    }

    map<int, int> memo;
    int cand1 = -1, cand2 = -1;
    for (int i = 0; i < (1 << n); ++i) {
        if (memo.find(dp[i]) != memo.end()) {
            cand1 = memo[dp[i]];
            cand2 = i;
            break;
        }
        memo[dp[i]] = i;
    }

    if (cand1 == -1) {
        cout << "No\n";
        return 0;
    }

    int is = cand1 & cand2;
    cand1 ^= is;
    cand2 ^= is;

    cout << "Yes\n";
    for (int i = 0; i < N; ++i) {
        if (i >= n) cout << 0;
        else {
            if (cand1 >> i & 1) cout << a[i];
            else if (cand2 >> i & 1) cout << -a[i];
            else cout << 0;
        }
        cout << " \n"[i + 1 == N];
    }
    return 0;
}
0