結果

問題 No.1017 Reiwa Sequence
ユーザー risujirohrisujiroh
提出日時 2020-04-03 23:08:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,209 bytes
コンパイル時間 1,860 ms
コンパイル使用メモリ 172,428 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-07-03 05:45:18
合計ジャッジ時間 31,161 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,272 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 4 ms
10,368 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
6,656 KB
testcase_06 AC 4 ms
5,888 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 6 ms
12,904 KB
testcase_10 AC 8 ms
18,176 KB
testcase_11 AC 4 ms
11,984 KB
testcase_12 AC 10 ms
21,472 KB
testcase_13 AC 14 ms
22,144 KB
testcase_14 AC 8 ms
11,648 KB
testcase_15 AC 9 ms
12,544 KB
testcase_16 AC 7 ms
11,776 KB
testcase_17 AC 10 ms
14,208 KB
testcase_18 AC 8 ms
11,648 KB
testcase_19 AC 43 ms
18,048 KB
testcase_20 AC 45 ms
18,048 KB
testcase_21 AC 43 ms
18,048 KB
testcase_22 AC 43 ms
18,048 KB
testcase_23 AC 44 ms
18,048 KB
testcase_24 AC 43 ms
18,048 KB
testcase_25 AC 42 ms
18,048 KB
testcase_26 AC 43 ms
18,048 KB
testcase_27 AC 33 ms
18,176 KB
testcase_28 AC 37 ms
18,304 KB
testcase_29 AC 13 ms
18,176 KB
testcase_30 AC 13 ms
18,176 KB
testcase_31 AC 16 ms
18,176 KB
testcase_32 AC 28 ms
18,176 KB
testcase_33 AC 12 ms
18,176 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 29 ms
18,176 KB
testcase_38 AC 12 ms
18,176 KB
testcase_39 AC 28 ms
18,176 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 39 ms
5,376 KB
testcase_49 WA -
testcase_50 AC 27 ms
5,376 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 41 ms
18,176 KB
testcase_53 AC 19 ms
18,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int n;
  cin >> n;
  vector<int> a(n);
  for (auto&& e : a) {
    cin >> e;
  }
  vector<int> ord(n);
  iota(begin(ord), end(ord), 0);
  sort(begin(ord), end(ord), [&](int i, int j) {
    return a[i] < a[j];
  });
  for (int t = 0; t < n - 1; ++t) {
    if (a[ord[t]] == a[ord[t + 1]]) {
      cout << "Yes\n";
      for (int i = 0; i < n; ++i) {
        cout << (i == ord[t] ? a[i] : i == ord[t + 1] ? -a[i] : 0) << " \n"[i == n - 1];
      }
      exit(0);
    }
  }
  int m = min(n, 24);
  vector<int> v(2e5 * m);
  for (int bt = 1; bt < 1 << m; ++bt) {
    int sum = 0;
    for (int i = 0; i < m; ++i) {
      if (bt >> i & 1) {
        sum += a[i];
      }
    }
    if (v[sum]) {
      cout << "Yes\n";
      vector<int> res(n);
      int x = bt & ~v[sum], y = v[sum] & ~bt;
      for (int i = 0; i < n; ++i) {
        if (x >> i & 1) {
          res[i] = a[i];
        } else if (y >> i & 1) {
          res[i] = -a[i];
        }
      }
      for (int i = 0; i < n; ++i) {
        cout << res[i] << " \n"[i == n - 1];
      }
      exit(0);
    }
    v[sum] = bt;
  }
  cout << "No\n";
}
0