結果

問題 No.1017 Reiwa Sequence
ユーザー ferinferin
提出日時 2020-04-03 23:19:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,540 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 210,256 KB
実行使用メモリ 285,156 KB
最終ジャッジ日時 2024-07-03 06:23:18
合計ジャッジ時間 35,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
5,248 KB
testcase_01 AC 9 ms
5,376 KB
testcase_02 AC 7 ms
5,376 KB
testcase_03 AC 22 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 11 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 60 ms
107,264 KB
testcase_10 AC 116 ms
224,896 KB
testcase_11 AC 60 ms
106,724 KB
testcase_12 AC 138 ms
284,672 KB
testcase_13 AC 130 ms
285,156 KB
testcase_14 AC 51 ms
95,972 KB
testcase_15 AC 60 ms
106,880 KB
testcase_16 AC 57 ms
86,912 KB
testcase_17 AC 84 ms
145,664 KB
testcase_18 AC 55 ms
103,908 KB
testcase_19 AC 125 ms
250,080 KB
testcase_20 AC 122 ms
265,572 KB
testcase_21 AC 129 ms
255,840 KB
testcase_22 AC 122 ms
264,040 KB
testcase_23 AC 122 ms
252,516 KB
testcase_24 AC 121 ms
256,864 KB
testcase_25 AC 120 ms
260,964 KB
testcase_26 AC 117 ms
252,644 KB
testcase_27 AC 120 ms
260,836 KB
testcase_28 AC 120 ms
265,184 KB
testcase_29 AC 121 ms
266,596 KB
testcase_30 AC 119 ms
264,416 KB
testcase_31 AC 121 ms
264,932 KB
testcase_32 AC 118 ms
257,372 KB
testcase_33 AC 116 ms
259,552 KB
testcase_34 AC 114 ms
251,108 KB
testcase_35 AC 112 ms
249,072 KB
testcase_36 AC 112 ms
248,936 KB
testcase_37 AC 121 ms
256,864 KB
testcase_38 AC 121 ms
258,916 KB
testcase_39 AC 123 ms
258,784 KB
testcase_40 AC 76 ms
23,240 KB
testcase_41 AC 74 ms
6,912 KB
testcase_42 AC 74 ms
6,912 KB
testcase_43 AC 73 ms
6,784 KB
testcase_44 AC 68 ms
6,912 KB
testcase_45 AC 73 ms
6,912 KB
testcase_46 AC 73 ms
6,912 KB
testcase_47 AC 73 ms
6,912 KB
testcase_48 AC 86 ms
8,192 KB
testcase_49 AC 74 ms
8,192 KB
testcase_50 AC 77 ms
8,704 KB
testcase_51 AC 5 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> p(n);
    REP(i, n) cin >> p[i];
    vector<PII> a(n);
    REP(i, n) a[i].first = p[i], a[i].second = i;
    sort(ALL(a));

    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].first <= 600000) {
            dp[i+1][j+a[i].first][1] = true;
            pre[i+1][j+a[i].first][1] = PII(a[i].first, k);
            if(!ok && j+a[i].first == base) {
                ok = true;
                ll ni = i+1, nj = j+a[i].first, nk = 1;
                while(ni > 0) {
                    dump(ni, nj, nk, pre[ni][nj][nk]);
                    ans[a[ni-1].second] = 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].first >= 0) {
            dp[i+1][j-a[i].first][1] = true;
            pre[i+1][j-a[i].first][1] = PII(-a[i].first, k);
            if(!ok && j-a[i].first == base) {
                ok = true;
                ll ni = i+1, nj = j-a[i].first, nk = 1;
                while(ni > 0) {
                    dump(ni, nj, nk, pre[ni][nj][nk]);
                    ans[a[ni-1].second] = 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