結果

問題 No.1017 Reiwa Sequence
ユーザー ferinferin
提出日時 2020-04-03 23:09:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,046 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 204,560 KB
実行使用メモリ 139,208 KB
最終ジャッジ日時 2024-07-03 05:48:57
合計ジャッジ時間 37,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 6 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 14 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 52 ms
56,704 KB
testcase_10 AC 114 ms
123,136 KB
testcase_11 AC 43 ms
43,520 KB
testcase_12 AC 121 ms
137,344 KB
testcase_13 AC 123 ms
130,304 KB
testcase_14 AC 47 ms
49,280 KB
testcase_15 AC 52 ms
54,784 KB
testcase_16 AC 40 ms
38,528 KB
testcase_17 AC 70 ms
73,088 KB
testcase_18 AC 42 ms
44,928 KB
testcase_19 AC 97 ms
101,504 KB
testcase_20 AC 109 ms
117,632 KB
testcase_21 AC 105 ms
113,408 KB
testcase_22 AC 109 ms
116,224 KB
testcase_23 AC 98 ms
100,352 KB
testcase_24 AC 95 ms
102,016 KB
testcase_25 AC 95 ms
95,872 KB
testcase_26 AC 71 ms
64,640 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 104 ms
108,288 KB
testcase_31 AC 109 ms
116,736 KB
testcase_32 AC 100 ms
104,576 KB
testcase_33 AC 100 ms
102,912 KB
testcase_34 AC 101 ms
114,176 KB
testcase_35 AC 49 ms
37,248 KB
testcase_36 AC 91 ms
91,776 KB
testcase_37 AC 104 ms
118,656 KB
testcase_38 AC 57 ms
49,920 KB
testcase_39 AC 99 ms
105,472 KB
testcase_40 AC 127 ms
126,976 KB
testcase_41 AC 120 ms
113,024 KB
testcase_42 AC 124 ms
121,088 KB
testcase_43 AC 120 ms
116,352 KB
testcase_44 AC 40 ms
5,376 KB
testcase_45 AC 114 ms
105,216 KB
testcase_46 AC 113 ms
104,576 KB
testcase_47 AC 90 ms
72,576 KB
testcase_48 AC 147 ms
139,208 KB
testcase_49 AC 47 ms
5,888 KB
testcase_50 AC 49 ms
6,016 KB
testcase_51 AC 4 ms
5,376 KB
testcase_52 WA -
testcase_53 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using PII = pair<ll, ll>;
#define FOR(i, a, n) for (ll i = (ll)a; i < (ll)n; ++i)
#define REP(i, n) FOR(i, 0, n)
#define ALL(x) x.begin(), x.end()
template<typename T> void chmin(T &a, const T &b) { a = min(a, b); }
template<typename T> void chmax(T &a, const T &b) { a = max(a, b); }
struct FastIO {FastIO() { cin.tie(0); ios::sync_with_stdio(0); }}fastiofastio;
#ifdef DEBUG_ 
#include "../program_contest_library/memo/dump.hpp"
#else
#define dump(...)
#endif
const ll INF = 1LL<<60;

PII pre[21][300001][2];
bool dp[21][300001][2];
int main(void) {
    ll n;
    cin >> n;
    vector<ll> a(n);
    REP(i, n) cin >> a[i];

    bool ok = false;
    vector<ll> ans(n);

    dp[0][150000][0] = true;
    REP(i, min(n, 20LL)) REP(j, 300001) REP(k, 2) {
        if(!dp[i][j][k]) continue;
        // dump(i);
        if(j+a[i] <= 300000) {
            // dump(j+a[i], 1);
            dp[i+1][j+a[i]][1] = true;
            pre[i+1][j+a[i]][1] = PII(a[i], k);
            if(!ok && j+a[i] == 150000) {
                ok = true;
                ll ni = i+1, nj = j+a[i], nk = 1;
                while(ni > 0) {
                    dump(ni, nj, nk, pre[ni][nj][nk]);
                    ans[ni-1] = pre[ni][nj][nk].first;
                    // if(pre[ni][nj][nk].first > 0) {
                    //     ans[ni-1] = a[ni-1];
                    // } else if(pre[ni][nj][nk].first < 0) {
                    //     ans[ni-1] = -a[ni-1];
                    // } else {
                    //     ans[ni-1] = 0;
                    // }
                    ll nni = ni-1;
                    ll nnj = nj - pre[ni][nj][nk].first;
                    ll nnk = pre[ni][nj][nk].second;
                    ni = nni, nj = nnj, nk = nnk;
                }
            }
        }

        if(j-a[i] >= 0) {
            // dump(j-a[i], 1);
            dp[i+1][j-a[i]][1] = true;
            pre[i+1][j-a[i]][1] = PII(-a[i], k);
            if(!ok && j-a[i] == 150000) {
                ok = true;
                ll ni = i+1, nj = j-a[i], nk = 1;
                while(ni > 0) {
                    dump(ni, nj, nk, pre[ni][nj][nk]);
                    ans[ni-1] = pre[ni][nj][nk].first;
                    // if(pre[ni][nj][nk].first > 0) {
                    //     ans[ni-1] = a[ni-1];
                    // } else if(pre[ni][nj][nk].first < 0) {
                    //     ans[ni-1] = -a[ni-1];
                    // } else {
                    //     ans[ni-1] = 0;
                    // }
                    ll nni = ni-1;
                    ll nnj = nj - pre[ni][nj][nk].first;
                    ll nnk = pre[ni][nj][nk].second;
                    ni = nni, nj = nnj, nk = nnk;
                }
            }
        }

        // dump(j, k);
        dp[i+1][j][k] = true;
        pre[i+1][j][k] = PII(0, k);
    }

    if(ok) {
        cout << "Yes\n";
        REP(i, n) cout << ans[i] << (i==n-1 ? '\n' : ' ');
    } else {
        cout << "No\n";
    }

    return 0;
}
0