結果

問題 No.1017 Reiwa Sequence
ユーザー minatominato
提出日時 2020-05-25 08:31:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 1,455 bytes
コンパイル時間 2,837 ms
コンパイル使用メモリ 222,380 KB
実行使用メモリ 28,544 KB
最終ジャッジ日時 2024-07-03 10:12:06
合計ジャッジ時間 41,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 414 ms
28,032 KB
testcase_20 AC 447 ms
27,904 KB
testcase_21 AC 462 ms
28,032 KB
testcase_22 AC 434 ms
27,904 KB
testcase_23 AC 367 ms
28,032 KB
testcase_24 AC 352 ms
28,032 KB
testcase_25 AC 321 ms
27,904 KB
testcase_26 AC 280 ms
28,160 KB
testcase_27 AC 249 ms
19,200 KB
testcase_28 AC 311 ms
22,016 KB
testcase_29 AC 7 ms
6,944 KB
testcase_30 AC 11 ms
6,944 KB
testcase_31 AC 32 ms
6,940 KB
testcase_32 AC 148 ms
15,616 KB
testcase_33 AC 4 ms
6,940 KB
testcase_34 AC 137 ms
15,744 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 154 ms
15,744 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 167 ms
15,616 KB
testcase_40 AC 471 ms
28,544 KB
testcase_41 AC 419 ms
28,544 KB
testcase_42 AC 436 ms
28,416 KB
testcase_43 AC 421 ms
28,544 KB
testcase_44 AC 17 ms
6,940 KB
testcase_45 AC 400 ms
28,544 KB
testcase_46 AC 366 ms
28,416 KB
testcase_47 AC 289 ms
28,544 KB
testcase_48 AC 27 ms
6,940 KB
testcase_49 AC 26 ms
6,944 KB
testcase_50 AC 27 ms
6,940 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 329 ms
27,904 KB
testcase_53 AC 65 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i = 0; i < (n); ++i)
#define all(x) (x).begin(),(x).end()
#define ln '\n'
constexpr long long MOD = 1000000007LL;
//constexpr long long MOD = 998244353LL;
typedef long long ll;
typedef unsigned long long ull; 
typedef pair<int, int> pii;
typedef pair<long long, long long> pll;
template<class T, class U> inline bool chmax(T &a, U b) { if (a < b) { a = b; return true;} return false; }
template<class T, class U> inline bool chmin(T &a, U b) { if (a > b) { a = b; return true;} return false; }
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

int main() {
    ios::sync_with_stdio(false); cin.tie(nullptr);
    int N; cin >> N;
    vector<int> A(N);
    rep(i,N) cin >> A[i];

    int M = min(N,22);
    vector<int> ans(N);
    map<int, int> dic;
    for (int mask = 1; mask < (1<<M); mask++) {
        int val = 0;
        rep(i,M) {
            if (mask&(1<<i)) val += A[i];
        }
        if (dic.count(val)) {
            int num = dic[val];
            rep(i,M) {
                if (mask&(1<<i)) ans[i] = A[i];
                if (num&(1<<i)) ans[i] = -A[i];
            }
            cout << "Yes" << ln;
            for (auto i : ans) cout << i << " ";
            cout << ln;
            return 0;
        } else dic.emplace(val,mask);
    }

    cout << "No" << ln;
}
0