結果

問題 No.1017 Reiwa Sequence
ユーザー knshnbknshnb
提出日時 2020-04-06 18:01:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,876 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 206,656 KB
実行使用メモリ 471,436 KB
最終ジャッジ日時 2024-07-03 08:32:51
合計ジャッジ時間 42,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
158,992 KB
testcase_01 AC 56 ms
114,464 KB
testcase_02 AC 43 ms
92,172 KB
testcase_03 AC 132 ms
248,072 KB
testcase_04 AC 42 ms
92,232 KB
testcase_05 AC 69 ms
136,724 KB
testcase_06 AC 56 ms
114,572 KB
testcase_07 AC 42 ms
92,148 KB
testcase_08 AC 40 ms
92,196 KB
testcase_09 AC 178 ms
314,820 KB
testcase_10 AC 299 ms
470,792 KB
testcase_11 AC 155 ms
292,640 KB
testcase_12 AC 294 ms
470,764 KB
testcase_13 AC 302 ms
470,904 KB
testcase_14 AC 158 ms
292,696 KB
testcase_15 AC 172 ms
314,932 KB
testcase_16 AC 157 ms
292,544 KB
testcase_17 AC 206 ms
359,500 KB
testcase_18 AC 154 ms
292,604 KB
testcase_19 AC 299 ms
470,788 KB
testcase_20 AC 303 ms
470,744 KB
testcase_21 AC 313 ms
470,788 KB
testcase_22 AC 312 ms
470,720 KB
testcase_23 AC 302 ms
470,784 KB
testcase_24 AC 281 ms
470,692 KB
testcase_25 AC 286 ms
470,776 KB
testcase_26 AC 279 ms
470,716 KB
testcase_27 AC 294 ms
470,748 KB
testcase_28 AC 299 ms
470,756 KB
testcase_29 AC 300 ms
470,728 KB
testcase_30 AC 312 ms
470,684 KB
testcase_31 AC 300 ms
470,688 KB
testcase_32 AC 286 ms
470,756 KB
testcase_33 AC 271 ms
470,680 KB
testcase_34 AC 272 ms
470,896 KB
testcase_35 AC 267 ms
470,684 KB
testcase_36 AC 303 ms
470,784 KB
testcase_37 AC 277 ms
470,692 KB
testcase_38 AC 270 ms
470,780 KB
testcase_39 AC 283 ms
470,864 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 270 ms
471,072 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 308 ms
471,332 KB
testcase_49 AC 275 ms
471,436 KB
testcase_50 AC 276 ms
471,324 KB
testcase_51 AC 30 ms
69,892 KB
testcase_52 AC 283 ms
470,752 KB
testcase_53 AC 282 ms
470,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>  // clang-format off
using Int = int;
#define REP_(i, a_, b_, a, b, ...) for (Int i = (a), lim##i = (b); i < lim##i; i++)
#define REP(i, ...) REP_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
struct SetupIO { SetupIO() { std::cin.tie(nullptr), std::ios::sync_with_stdio(false), std::cout << std::fixed << std::setprecision(13); } } setup_io;
#ifndef _MY_DEBUG
#define dump(...)
#endif  // clang-format on

/**
 *    author:  knshnb
 *    created: Mon Apr  6 17:27:48 JST 2020
 **/

template <class T, class S> T make_vec(S x) { return x; }
template <class T, class... Ts> auto make_vec(size_t n, Ts... ts) {
    return std::vector<decltype(make_vec<T>(ts...))>(n, make_vec<T>(ts...));
}

const Int K = 19;
const Int S = K * 150001;
signed main() {
    Int n;
    std::cin >> n;
    std::vector<Int> a(n);
    REP(i, n) std::cin >> a[i];
    Int m = std::min(n, K);
    auto dp = make_vec<Int>(m + 1, 2 * S + 1, 0);
    dp[0][S] = 1;
    REP(i, m) {
        auto dp1 = dp[i].begin() + S, dp2 = dp[i + 1].begin() + S;
        REP(j, -S, S) {
            if (dp1[j] == 0) continue;
            dp1[j] = std::min(3, dp1[j]);
            dp2[j] += dp1[j];
            dp2[j + a[i]] += dp1[j];
            dp2[j - a[i]] += dp1[j];
        }
    }
    if (dp[m][S] == 1) {
        std::cout << "No" << std::endl;
        return 0;
    }
    Int curj = 0;
    std::vector<Int> b(n);
    for (int i = m - 1; i >= 0; i--) {
        auto dp1 = dp[i].begin() + S, dp2 = dp[i + 1].begin() + S;
        if (dp1[curj - a[i]] > 0) {
            b[i] = a[i];
            curj -= a[i];
        } else if (dp1[curj + a[i]] > 0) {
            b[i] = -a[i];
            curj += a[i];
        } else {
            b[i] = 0;
        }
    }
    assert(curj == 0);
    std::cout << "Yes" << std::endl;
    for (Int x : b) std::cout << x << " ";
    std::cout << std::endl;
}
0