結果

問題 No.1017 Reiwa Sequence
ユーザー knshnbknshnb
提出日時 2020-04-06 17:58:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,835 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 206,860 KB
実行使用メモリ 425,656 KB
最終ジャッジ日時 2024-07-03 08:27:06
合計ジャッジ時間 49,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
150,764 KB
testcase_01 AC 66 ms
108,544 KB
testcase_02 AC 50 ms
87,524 KB
testcase_03 AC 163 ms
235,256 KB
testcase_04 AC 51 ms
87,464 KB
testcase_05 AC 85 ms
129,744 KB
testcase_06 AC 66 ms
108,620 KB
testcase_07 AC 50 ms
87,424 KB
testcase_08 AC 49 ms
87,532 KB
testcase_09 AC 219 ms
298,496 KB
testcase_10 AC 334 ms
425,040 KB
testcase_11 AC 201 ms
277,468 KB
testcase_12 AC 334 ms
425,064 KB
testcase_13 AC 338 ms
425,008 KB
testcase_14 AC 197 ms
277,472 KB
testcase_15 AC 218 ms
298,492 KB
testcase_16 AC 201 ms
277,304 KB
testcase_17 AC 260 ms
340,596 KB
testcase_18 AC 198 ms
277,456 KB
testcase_19 AC 336 ms
425,012 KB
testcase_20 AC 343 ms
425,180 KB
testcase_21 AC 345 ms
425,124 KB
testcase_22 AC 342 ms
425,068 KB
testcase_23 AC 336 ms
425,004 KB
testcase_24 AC 322 ms
425,048 KB
testcase_25 AC 322 ms
425,088 KB
testcase_26 AC 314 ms
425,020 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 350 ms
425,120 KB
testcase_30 AC 338 ms
425,056 KB
testcase_31 AC 336 ms
424,992 KB
testcase_32 WA -
testcase_33 AC 330 ms
425,020 KB
testcase_34 WA -
testcase_35 AC 316 ms
425,188 KB
testcase_36 AC 340 ms
425,116 KB
testcase_37 WA -
testcase_38 AC 313 ms
425,076 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 328 ms
425,368 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 353 ms
425,572 KB
testcase_49 AC 333 ms
425,656 KB
testcase_50 AC 344 ms
425,560 KB
testcase_51 AC 34 ms
66,376 KB
testcase_52 WA -
testcase_53 AC 328 ms
425,004 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 = 18;
const Int S = 18 * 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;
            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