結果

問題 No.1017 Reiwa Sequence
ユーザー kyort0nkyort0n
提出日時 2020-04-04 04:54:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
J_TLE  
(最初)
実行時間 -
コード長 1,482 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 178,552 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-07-03 06:56:59
合計ジャッジ時間 48,040 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 22 ms
6,144 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 1,221 ms
107,392 KB
testcase_20 AC 1,276 ms
107,264 KB
testcase_21 AC 1,298 ms
107,392 KB
testcase_22 AC 1,245 ms
107,264 KB
testcase_23 AC 1,137 ms
107,264 KB
testcase_24 AC 1,136 ms
107,264 KB
testcase_25 AC 1,077 ms
107,392 KB
testcase_26 AC 1,018 ms
107,264 KB
testcase_27 AC 723 ms
68,480 KB
testcase_28 AC 897 ms
80,000 KB
testcase_29 AC 16 ms
5,376 KB
testcase_30 AC 31 ms
7,552 KB
testcase_31 AC 98 ms
15,360 KB
testcase_32 AC 486 ms
53,888 KB
testcase_33 AC 10 ms
5,376 KB
testcase_34 AC 485 ms
53,888 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 518 ms
53,888 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 536 ms
53,888 KB
testcase_40 AC 1,340 ms
108,032 KB
testcase_41 WA -
testcase_42 AC 1,204 ms
107,904 KB
testcase_43 WA -
testcase_44 AC 15 ms
5,376 KB
testcase_45 WA -
testcase_46 AC 1,052 ms
107,904 KB
testcase_47 WA -
testcase_48 AC 26 ms
5,376 KB
testcase_49 AC 24 ms
5,376 KB
testcase_50 AC 26 ms
5,376 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 1,117 ms
106,368 KB
testcase_53 AC 205 ms
27,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> l_l;
typedef pair<int, int> i_i;
template<class T>
inline bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return true;
    }
    return false;
}

template<class T>
inline bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return true;
    }
    return false;
}

const long double EPS = 1e-10;
const long long INF = 1e18;
const long double PI = acos(-1.0L);
//const ll mod = 1000000007;
map<ll, vector<ll>> mp;

int main() {
    //cout.precision(10);
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N;
    cin >> N;
    vector<int> A(N), ans(N);
    for(int i = 0; i < N; i++) cin >> A[i];
    for(int i = 0; i < (1 << N); i++) {
        ll sum = 0;
        for(int j = 0; j <= 30; j++) {
            if(i & (1 << j)) sum += A[j];
        }
        if(mp.count(sum)) {
            for(int j = 0; j <= 30; j++) {
                if(i & (1 << j)) ans[j] += A[j];
            }
            for(auto tmp : mp[sum]) {
                ans[tmp] -= A[tmp];
            }
            cout << "Yes" << endl;
            for(int i = 0; i < N; i++) {
                if(i != 0) cout << " ";
                cout << ans[i];
            }
            cout << endl;
            return 0;
        } else {
            for(int j = 0; j <= 30; j++) {
                if(i & (1 << j)) mp[sum].push_back(j);
            }
        }
    }
    cout << "No" << endl;
    return 0;
}
0