結果

問題 No.1017 Reiwa Sequence
ユーザー kimiyukikimiyuki
提出日時 2020-04-03 22:43:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,667 bytes
コンパイル時間 2,540 ms
コンパイル使用メモリ 221,924 KB
実行使用メモリ 219,436 KB
最終ジャッジ日時 2024-07-03 05:07:18
合計ジャッジ時間 19,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 60 ms
16,004 KB
testcase_10 AC 413 ms
64,372 KB
testcase_11 AC 19 ms
7,816 KB
testcase_12 AC 158 ms
34,392 KB
testcase_13 AC 464 ms
68,660 KB
testcase_14 AC 17 ms
7,340 KB
testcase_15 AC 54 ms
15,748 KB
testcase_16 AC 18 ms
7,660 KB
testcase_17 AC 455 ms
67,640 KB
testcase_18 AC 17 ms
7,528 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,889 ms
198,236 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1,688 ms
160,660 KB
testcase_26 AC 1,840 ms
202,884 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,978 ms
203,356 KB
testcase_30 TLE -
testcase_31 AC 1,965 ms
189,248 KB
testcase_32 AC 1,478 ms
144,424 KB
testcase_33 AC 708 ms
100,436 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1,815 ms
173,476 KB
testcase_38 AC 1,836 ms
173,352 KB
testcase_39 AC 1,825 ms
173,476 KB
testcase_40 AC 34 ms
8,944 KB
testcase_41 AC 32 ms
8,940 KB
testcase_42 AC 32 ms
8,784 KB
testcase_43 AC 32 ms
8,928 KB
testcase_44 AC 37 ms
8,940 KB
testcase_45 AC 35 ms
8,928 KB
testcase_46 AC 32 ms
8,788 KB
testcase_47 AC 31 ms
8,784 KB
testcase_48 AC 23 ms
5,376 KB
testcase_49 AC 40 ms
11,432 KB
testcase_50 AC 23 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 1,473 ms
160,772 KB
testcase_53 AC 1,484 ms
160,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; (i) < (int)(n); ++ (i))
#define REP3(i, m, n) for (int i = (m); (i) < (int)(n); ++ (i))
#define REP_R(i, n) for (int i = (int)(n) - 1; (i) >= 0; -- (i))
#define REP3R(i, m, n) for (int i = (int)(n) - 1; (i) >= (int)(m); -- (i))
#define ALL(x) ::std::begin(x), ::std::end(x)
using namespace std;

vector<int> solve(int n, const vector<int64_t> & a) {
    // find duplicated numbers
    unordered_map<int64_t, int> found;
    REP (i, n) {
        if (found.count(a[i])) {
            int j = found[a[i]];
            vector<int> x(n);
            x[i] = +1;
            x[j] = -1;
            return x;
        }
        found[a[i]] = i;
    }

    // dp
    vector<int> order(n);
    iota(ALL(order), 0);
    sort(ALL(order), [&](int i, int j) { return a[i] > a[j]; });
    // shuffle(ALL(order), default_random_engine());
    auto func = [&](int l, int r) {
        unordered_map<int64_t, int> cur, prv;
        REP3 (i, l, r) {
            int64_t a_i = a[order[i]];
            prv = cur;
            cur.try_emplace(a_i, i);
            for (auto it : prv) {
                cur.try_emplace(it.first + a_i, i);
                cur.try_emplace(it.first - a_i, i);
            }
            if (cur.count(0)) {
                break;
            }
        }
// for (auto it : cur) {
// cerr << it.first << " (" << it.second << ")" << endl;
// }
        return cur;
    };
    auto cur = func(0, n);
    if (not cur.count(0)) {
        return vector<int>();
    }

    // reconstruct
    vector<int> x(n);
    for (int64_t value = 0; ; ) {
        int i = cur[value];
        int64_t a_i = a[order[i]];
        if (value - a_i == 0) {
            x[order[i]] = +1;
            break;
        } else if (cur.count(value - a_i) and cur[value - a_i] < i) {
            x[order[i]] = +1;
            value -= a_i;
        } else if (cur.count(value + a_i) and cur[value + a_i] < i) {
            x[order[i]] = -1;
            value += a_i;
        } else {
            assert (false);
        }
    }
    return x;
}

// generated by online-judge-template-generator (https://github.com/kmyk/online-judge-template-generator)
const string YES = "Yes";
const string NO = "No";
int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    constexpr char endl = '\n';
    int N;
    cin >> N;
    vector<int64_t> A(N);
    REP (i, N) {
        cin >> A[i];
    }
    auto x = solve(N, A);
    if (x.empty()) {
        cout << NO << endl;
    } else {
        cout << YES << endl;
        REP (i, N) {
            cout << (A[i] * x[i]) << (i + 1 < N ? ' ' : '\n');
        }
    }
    return 0;
}
0