結果

問題 No.1017 Reiwa Sequence
ユーザー ferinferin
提出日時 2020-04-03 23:15:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,358 bytes
コンパイル時間 1,876 ms
コンパイル使用メモリ 204,568 KB
実行使用メモリ 290,816 KB
最終ジャッジ日時 2024-07-03 06:05:59
合計ジャッジ時間 37,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
5,248 KB
testcase_01 AC 9 ms
5,376 KB
testcase_02 AC 7 ms
5,376 KB
testcase_03 AC 23 ms
5,376 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 97 ms
108,928 KB
testcase_10 AC 209 ms
248,556 KB
testcase_11 AC 84 ms
88,960 KB
testcase_12 AC 242 ms
290,816 KB
testcase_13 AC 242 ms
285,568 KB
testcase_14 AC 80 ms
91,776 KB
testcase_15 AC 98 ms
109,952 KB
testcase_16 AC 76 ms
83,200 KB
testcase_17 AC 127 ms
147,200 KB
testcase_18 AC 82 ms
91,648 KB
testcase_19 AC 190 ms
221,056 KB
testcase_20 AC 214 ms
244,608 KB
testcase_21 AC 202 ms
237,312 KB
testcase_22 AC 208 ms
243,200 KB
testcase_23 AC 189 ms
210,816 KB
testcase_24 AC 177 ms
207,232 KB
testcase_25 AC 180 ms
195,584 KB
testcase_26 AC 137 ms
134,016 KB
testcase_27 AC 199 ms
240,640 KB
testcase_28 AC 194 ms
235,520 KB
testcase_29 AC 202 ms
236,288 KB
testcase_30 AC 186 ms
216,192 KB
testcase_31 AC 206 ms
240,000 KB
testcase_32 AC 187 ms
219,008 KB
testcase_33 AC 183 ms
200,704 KB
testcase_34 AC 190 ms
234,624 KB
testcase_35 AC 108 ms
93,440 KB
testcase_36 AC 182 ms
206,080 KB
testcase_37 AC 188 ms
238,592 KB
testcase_38 AC 126 ms
130,304 KB
testcase_39 AC 184 ms
221,952 KB
testcase_40 AC 240 ms
284,544 KB
testcase_41 AC 223 ms
259,584 KB
testcase_42 AC 246 ms
268,544 KB
testcase_43 AC 232 ms
268,544 KB
testcase_44 AC 61 ms
5,632 KB
testcase_45 AC 233 ms
254,720 KB
testcase_46 AC 219 ms
241,664 KB
testcase_47 AC 179 ms
173,568 KB
testcase_48 AC 263 ms
289,920 KB
testcase_49 AC 72 ms
5,888 KB
testcase_50 AC 69 ms
6,400 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[22][600010][2];
bool dp[22][600010][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);

    const ll base = 300000;
    dp[0][base][0] = true;
    REP(i, min(n, 21LL)) REP(j, 600001) REP(k, 2) {
        if(!dp[i][j][k]) continue;
        if(j+a[i] <= 600000) {
            dp[i+1][j+a[i]][1] = true;
            pre[i+1][j+a[i]][1] = PII(a[i], k);
            if(!ok && j+a[i] == base) {
                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;
                    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) {
            dp[i+1][j-a[i]][1] = true;
            pre[i+1][j-a[i]][1] = PII(-a[i], k);
            if(!ok && j-a[i] == base) {
                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;
                    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