結果

問題 No.1017 Reiwa Sequence
ユーザー kyo1kyo1
提出日時 2020-06-19 04:04:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 950 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 205,984 KB
実行使用メモリ 145,908 KB
最終ジャッジ日時 2024-07-03 13:11:36
合計ジャッジ時間 45,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
96,944 KB
testcase_01 AC 43 ms
96,960 KB
testcase_02 AC 34 ms
96,796 KB
testcase_03 AC 34 ms
96,964 KB
testcase_04 AC 35 ms
96,972 KB
testcase_05 AC 33 ms
96,928 KB
testcase_06 AC 33 ms
96,960 KB
testcase_07 AC 34 ms
96,980 KB
testcase_08 AC 34 ms
96,972 KB
testcase_09 AC 36 ms
97,076 KB
testcase_10 AC 148 ms
107,672 KB
testcase_11 AC 36 ms
97,076 KB
testcase_12 AC 887 ms
138,132 KB
testcase_13 AC 865 ms
137,732 KB
testcase_14 AC 43 ms
96,984 KB
testcase_15 AC 42 ms
96,956 KB
testcase_16 AC 43 ms
97,040 KB
testcase_17 AC 46 ms
97,376 KB
testcase_18 AC 42 ms
97,048 KB
testcase_19 AC 169 ms
113,316 KB
testcase_20 AC 174 ms
113,316 KB
testcase_21 AC 180 ms
113,400 KB
testcase_22 AC 182 ms
113,316 KB
testcase_23 AC 168 ms
113,404 KB
testcase_24 AC 170 ms
113,244 KB
testcase_25 AC 163 ms
113,356 KB
testcase_26 AC 152 ms
113,316 KB
testcase_27 AC 166 ms
113,284 KB
testcase_28 AC 155 ms
113,228 KB
testcase_29 AC 159 ms
113,120 KB
testcase_30 AC 156 ms
112,940 KB
testcase_31 AC 154 ms
112,240 KB
testcase_32 AC 159 ms
111,444 KB
testcase_33 AC 128 ms
109,244 KB
testcase_34 AC 151 ms
109,272 KB
testcase_35 AC 113 ms
109,336 KB
testcase_36 AC 140 ms
109,224 KB
testcase_37 AC 159 ms
111,272 KB
testcase_38 AC 142 ms
111,196 KB
testcase_39 AC 153 ms
111,300 KB
testcase_40 AC 950 ms
144,560 KB
testcase_41 AC 938 ms
143,864 KB
testcase_42 AC 944 ms
145,908 KB
testcase_43 AC 915 ms
144,500 KB
testcase_44 AC 346 ms
117,972 KB
testcase_45 AC 930 ms
142,720 KB
testcase_46 AC 870 ms
142,372 KB
testcase_47 AC 730 ms
139,552 KB
testcase_48 AC 880 ms
136,456 KB
testcase_49 AC 348 ms
115,632 KB
testcase_50 AC 360 ms
118,504 KB
testcase_51 AC 42 ms
96,968 KB
testcase_52 AC 161 ms
113,348 KB
testcase_53 AC 144 ms
113,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++) {
    cin >> A[i];
  }
  int M = min(N, 22);
  vector<vector<int>> masks(4000000);
  for (int mask = 0; mask < (1 << M); mask++) {
    int sum = 0;
    for (int i = 0; i < M; i++) {
      if ((mask >> i) & 1) sum += A[i];
    }
    masks[sum].emplace_back(mask);
  }
  for (int i = 1; i < (int)masks.size(); i++) {
    if ((int)masks[i].size() < 2) continue;
    int plus = masks[i][0], minus = masks[i][1];
    cout << "Yes" << '\n';
    for (int j = 0; j < M; j++) {
      if (j != 0) cout << ' ';
      if ((plus >> j) & 1) {
        cout << A[j];
      } else if ((minus >> j) & 1) {
        cout << -A[j];
      } else {
        cout << 0;
      }
    }
    for (int j = M; j < N; j++) {
      cout << ' ' << 0;
    }
    cout << '\n';
    return 0;
  }
  cout << "No" << '\n';
  return 0;
}
0