結果

問題 No.1017 Reiwa Sequence
ユーザー satashunsatashun
提出日時 2020-05-15 01:53:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,527 bytes
コンパイル時間 2,273 ms
コンパイル使用メモリ 204,096 KB
実行使用メモリ 321,364 KB
最終ジャッジ日時 2024-07-03 10:05:49
合計ジャッジ時間 37,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
26,188 KB
testcase_01 WA -
testcase_02 AC 9 ms
13,896 KB
testcase_03 AC 32 ms
42,568 KB
testcase_04 AC 9 ms
13,896 KB
testcase_05 AC 16 ms
24,264 KB
testcase_06 AC 13 ms
20,044 KB
testcase_07 AC 9 ms
13,900 KB
testcase_08 AC 9 ms
13,896 KB
testcase_09 AC 57 ms
106,052 KB
testcase_10 AC 125 ms
196,300 KB
testcase_11 AC 51 ms
99,912 KB
testcase_12 AC 203 ms
265,860 KB
testcase_13 AC 211 ms
284,232 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 148 ms
252,744 KB
testcase_28 AC 145 ms
246,088 KB
testcase_29 AC 148 ms
245,320 KB
testcase_30 AC 150 ms
253,508 KB
testcase_31 AC 139 ms
238,024 KB
testcase_32 AC 125 ms
236,620 KB
testcase_33 AC 104 ms
196,296 KB
testcase_34 AC 115 ms
247,364 KB
testcase_35 AC 119 ms
256,588 KB
testcase_36 AC 145 ms
256,588 KB
testcase_37 AC 113 ms
241,740 KB
testcase_38 AC 116 ms
244,552 KB
testcase_39 AC 140 ms
239,172 KB
testcase_40 AC 222 ms
303,776 KB
testcase_41 AC 232 ms
301,860 KB
testcase_42 AC 247 ms
321,364 KB
testcase_43 AC 226 ms
316,132 KB
testcase_44 AC 151 ms
212,512 KB
testcase_45 AC 229 ms
310,296 KB
testcase_46 AC 220 ms
319,240 KB
testcase_47 AC 209 ms
316,532 KB
testcase_48 AC 222 ms
238,428 KB
testcase_49 AC 143 ms
100,832 KB
testcase_50 AC 166 ms
212,704 KB
testcase_51 WA -
testcase_52 AC 119 ms
255,564 KB
testcase_53 AC 123 ms
252,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using pii = pair<int, int>;
template <class T>
using V = vector<T>;
template <class T>
using VV = V<V<T>>;

#define pb push_back
#define eb emplace_back
#define mp make_pair
#define fi first
#define se second
#define rep(i, n) rep2(i, 0, n)
#define rep2(i, m, n) for (int i = m; i < (n); i++)
#define ALL(c) (c).begin(), (c).end()

constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n - 1); }

template <class T, class U>
void chmin(T& t, const U& u) {
    if (t > u) t = u;
}
template <class T, class U>
void chmax(T& t, const U& u) {
    if (t < u) t = u;
}

template <class T, class U>
ostream& operator<<(ostream& os, const pair<T, U>& p) {
    os << "(" << p.first << "," << p.second << ")";
    return os;
}

template <class T>
ostream& operator<<(ostream& os, const vector<T>& v) {
    os << "{";
    rep(i, v.size()) {
        if (i) os << ",";
        os << v[i];
    }
    os << "}";
    return os;
}

#ifdef LOCAL
void debug_out() { cerr << endl; }
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
    cerr << " " << H;
    debug_out(T...);
}
#define debug(...) \
    cerr << __LINE__ << " [" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#define dump(x) cerr << __LINE__ << " " << #x << " = " << (x) << endl
#else
#define debug(...) (void(0))
#define dump(x) (void(0))
#endif

const int B = 150000 * 11 + 5;
const int SZ = B * 2;

bool dp[24][SZ];
int pre[24][SZ];

int main() {
    dp[0][B] = 1;
    int N;
    cin >> N;
    V<int> A(N), ans(N);
    rep(i, N) { cin >> A[i]; }
    int now = 0;
    rep(i, min(N, 23)) {
        rep(j, SZ) {
            if (dp[i][j]) {
                if (j + A[i] < SZ) {
                    dp[i + 1][j + A[i]] = 1;
                    pre[i + 1][j + A[i]] = j;
                }
                dp[i + 1][j] = 1;
                pre[i + 1][j] = j;
                if (j - A[i] >= 0) {
                    dp[i + 1][j - A[i]] = 1;
                    pre[i + 1][j - A[i]] = j;
                }
            }
        }
        now++;
    }

    if (!dp[now][B]) {
        puts("No");
        return 0;
    }

    int p = now, v = B;
    rep(t, now) {
        int nx = pre[p][v];
        --p;
        if (nx < v) {
            ans[p] = 1;
        } else if (nx > v) {
            ans[p] = -1;
        } else {
            ans[p] = 0;
        }
        v = nx;
    }

    puts("Yes");
    rep(i, N) { printf("%d%c", ans[i] * A[i], i == N - 1 ? '\n' : ' '); }

    return 0;
}
0