結果

問題 No.1017 Reiwa Sequence
ユーザー hedwig100hedwig100
提出日時 2020-04-05 18:22:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,214 ms / 2,000 ms
コード長 1,210 bytes
コンパイル時間 1,659 ms
コンパイル使用メモリ 172,692 KB
実行使用メモリ 129,444 KB
最終ジャッジ日時 2024-07-03 08:22:07
合計ジャッジ時間 52,729 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
80,532 KB
testcase_01 AC 58 ms
80,604 KB
testcase_02 AC 48 ms
80,704 KB
testcase_03 AC 47 ms
80,640 KB
testcase_04 AC 48 ms
80,512 KB
testcase_05 AC 48 ms
80,512 KB
testcase_06 AC 34 ms
80,592 KB
testcase_07 AC 50 ms
80,512 KB
testcase_08 AC 48 ms
80,512 KB
testcase_09 AC 51 ms
80,656 KB
testcase_10 AC 170 ms
91,392 KB
testcase_11 AC 33 ms
80,624 KB
testcase_12 AC 1,131 ms
121,736 KB
testcase_13 AC 1,111 ms
121,372 KB
testcase_14 AC 40 ms
80,640 KB
testcase_15 AC 62 ms
80,640 KB
testcase_16 AC 61 ms
80,628 KB
testcase_17 AC 65 ms
81,008 KB
testcase_18 AC 60 ms
80,640 KB
testcase_19 AC 188 ms
97,024 KB
testcase_20 AC 193 ms
97,024 KB
testcase_21 AC 187 ms
96,952 KB
testcase_22 AC 195 ms
96,896 KB
testcase_23 AC 186 ms
96,896 KB
testcase_24 AC 188 ms
96,976 KB
testcase_25 AC 176 ms
96,896 KB
testcase_26 AC 167 ms
96,896 KB
testcase_27 AC 180 ms
96,920 KB
testcase_28 AC 172 ms
96,896 KB
testcase_29 AC 179 ms
96,728 KB
testcase_30 AC 173 ms
96,604 KB
testcase_31 AC 172 ms
95,928 KB
testcase_32 AC 164 ms
95,104 KB
testcase_33 AC 148 ms
92,916 KB
testcase_34 AC 167 ms
92,800 KB
testcase_35 AC 121 ms
92,880 KB
testcase_36 AC 159 ms
92,800 KB
testcase_37 AC 216 ms
94,888 KB
testcase_38 AC 194 ms
94,860 KB
testcase_39 AC 211 ms
94,848 KB
testcase_40 AC 1,214 ms
128,168 KB
testcase_41 AC 1,065 ms
127,552 KB
testcase_42 AC 1,214 ms
129,444 KB
testcase_43 AC 1,057 ms
128,384 KB
testcase_44 AC 427 ms
101,504 KB
testcase_45 AC 1,032 ms
126,256 KB
testcase_46 AC 969 ms
126,160 KB
testcase_47 AC 887 ms
123,084 KB
testcase_48 AC 1,044 ms
120,152 KB
testcase_49 AC 477 ms
99,448 KB
testcase_50 AC 483 ms
100,640 KB
testcase_51 AC 61 ms
80,592 KB
testcase_52 AC 214 ms
96,976 KB
testcase_53 AC 195 ms
97,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i ++)
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
typedef pair<ll,ll> PL;
const ll MOD = 1e9 + 7;
const ll INF = 1e10;
const vector<int> dy = {-1,0,1,0};
const vector<int> dx = {0,1,0,-1};

int main() {
    int k; cin >> k;
    int n = min(22,k);
    vector<int> a(k);
    rep(i,k) cin >> a[i];
    
    vector<vector<int>> tot(3300005);
    for (int bit = 0;bit < (1 << n); bit ++ ) {
        int tmp = 0;
        rep(i,n) {
            if ((bit>>i)&1) {
                tmp += a[i];
            }
        }
        tot[tmp].push_back(bit);
    }

    int p = 0,m = 0;
    for (int i = 1; i < 3300005; i++) {
        if (tot[i].size() > 1) {
            p = tot[i][0];
            m = tot[i][1];
            break;
        }
    }

    if (p == 0) {
        cout << "No" << endl;
        return 0;
    }

    for (int i = 0; i < n; i ++) {
        if ((p>>i)&1 && (m>>i)&1) a[i] = 0;
        else if ((p>>i)&1) continue;
        else if ((m>>i)&1) a[i] = -a[i];
        else a[i] = 0;
    }
    
    cout << "Yes" << endl;
    rep(i,n) cout << a[i] << ' ';
    rep(i,max(k - n,0)) cout << 0 << ' ';
    cout << '\n';
}
0