結果

問題 No.1017 Reiwa Sequence
ユーザー hitoare1hitoare1
提出日時 2020-04-03 23:37:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,962 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 182,456 KB
実行使用メモリ 816,916 KB
最終ジャッジ日時 2024-07-03 06:32:02
合計ジャッジ時間 20,345 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 MLE -
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 31 ms
14,336 KB
testcase_10 AC 179 ms
90,392 KB
testcase_11 AC 36 ms
17,428 KB
testcase_12 AC 252 ms
113,424 KB
testcase_13 AC 12 ms
7,348 KB
testcase_14 AC 64 ms
36,208 KB
testcase_15 AC 153 ms
88,476 KB
testcase_16 AC 69 ms
38,992 KB
testcase_17 AC 744 ms
328,264 KB
testcase_18 AC 65 ms
37,232 KB
testcase_19 MLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int N;
    cin >> N;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    vector<bool> use(5000000, false);
    vector<pair<vector<int>, int>> make;
    make.push_back({{}, 0});
    for (int i = 0; i < N; i++) {
        vector<pair<vector<int>, int>> nxt;
        for (auto p : make) {
            int sum = p.second, nsum;
            vector<int> c = p.first, nc;
            nc = c;
            nc.push_back(0);
            nxt.push_back({nc, sum});
            
            if (sum+A[i] == 0) {
                cout << "Yes\n";
                for (int j = 0; j < N; j++) {
                    if (j < i) cout << c[j]*A[j];
                    else if (j == i) cout << A[j];
                    else cout << 0;
                    if (j < N-1) cout << " ";
                }
                cout << endl;
                return 0;
            }
            
            if (sum-A[i] == 0) {
                cout << "Yes\n";
                for (int j = 0; j < N; j++) {
                    if (j < i) cout << c[j]*A[j];
                    else if (j == i) cout << -A[j];
                    else cout << 0;
                    if (j < N-1) cout << " ";
                }
                cout << endl;
                return 0;
            }
            
            
            if (abs(sum+A[i] < 1700000) && !use[sum+A[i]+2500000]) {
                nsum = sum+A[i];
                nc = c;
                nc.push_back(1);
                nxt.push_back({nc, nsum});
                use[nsum+2500000] = true;
            }
            if (abs(sum-A[i] < 1700000) && !use[sum-A[i]+2500000]) {
                nsum = sum-A[i];
                nc = c;
                nc.push_back(-1);
                nxt.push_back({nc, nsum});
                use[nsum+2500000] = true;
            }
        }
        make = nxt;
    }
    cout << "No\n";
    return 0;
}
0