結果

問題 No.1017 Reiwa Sequence
ユーザー jupirojupiro
提出日時 2020-04-10 21:13:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,120 ms / 2,000 ms
コード長 1,751 bytes
コンパイル時間 1,186 ms
コンパイル使用メモリ 120,716 KB
実行使用メモリ 130,268 KB
最終ジャッジ日時 2024-07-03 08:46:48
合計ジャッジ時間 50,239 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
80,884 KB
testcase_01 AC 40 ms
80,756 KB
testcase_02 AC 32 ms
80,808 KB
testcase_03 AC 32 ms
80,840 KB
testcase_04 AC 33 ms
80,784 KB
testcase_05 AC 32 ms
80,764 KB
testcase_06 AC 33 ms
80,876 KB
testcase_07 AC 33 ms
80,988 KB
testcase_08 AC 32 ms
80,960 KB
testcase_09 AC 33 ms
81,052 KB
testcase_10 AC 174 ms
91,612 KB
testcase_11 AC 34 ms
80,960 KB
testcase_12 AC 1,082 ms
122,008 KB
testcase_13 AC 991 ms
121,700 KB
testcase_14 AC 42 ms
81,008 KB
testcase_15 AC 41 ms
81,012 KB
testcase_16 AC 40 ms
80,948 KB
testcase_17 AC 44 ms
81,272 KB
testcase_18 AC 41 ms
80,992 KB
testcase_19 AC 176 ms
97,216 KB
testcase_20 AC 182 ms
97,188 KB
testcase_21 AC 189 ms
97,292 KB
testcase_22 AC 189 ms
97,256 KB
testcase_23 AC 176 ms
97,276 KB
testcase_24 AC 173 ms
97,208 KB
testcase_25 AC 170 ms
97,268 KB
testcase_26 AC 162 ms
97,136 KB
testcase_27 AC 175 ms
97,368 KB
testcase_28 AC 169 ms
97,240 KB
testcase_29 AC 171 ms
96,908 KB
testcase_30 AC 169 ms
96,900 KB
testcase_31 AC 168 ms
96,220 KB
testcase_32 AC 163 ms
95,504 KB
testcase_33 AC 147 ms
93,216 KB
testcase_34 AC 167 ms
93,120 KB
testcase_35 AC 117 ms
93,168 KB
testcase_36 AC 150 ms
93,188 KB
testcase_37 AC 176 ms
95,288 KB
testcase_38 AC 155 ms
95,276 KB
testcase_39 AC 169 ms
95,244 KB
testcase_40 AC 1,072 ms
129,004 KB
testcase_41 AC 1,040 ms
128,480 KB
testcase_42 AC 1,090 ms
130,268 KB
testcase_43 AC 1,043 ms
128,964 KB
testcase_44 AC 352 ms
102,408 KB
testcase_45 AC 1,120 ms
127,152 KB
testcase_46 AC 903 ms
126,848 KB
testcase_47 AC 765 ms
123,916 KB
testcase_48 AC 974 ms
121,316 KB
testcase_49 AC 360 ms
100,700 KB
testcase_50 AC 364 ms
102,132 KB
testcase_51 AC 40 ms
80,808 KB
testcase_52 AC 172 ms
97,228 KB
testcase_53 AC 146 ms
97,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>
#include <numeric>
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

constexpr long long MAX = 5100000;
constexpr long long INF = 1LL << 60;
constexpr int inf = 1 << 28;
constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353LL;

using namespace std;
typedef unsigned long long ull;
typedef long long ll;

constexpr int mx = 150000 * 22 + 1;
vector<int> dp[mx];
int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/
	ll n; scanf("%lld", &n);
	vector<ll> a(n); for (int i = 0; i < n; i++) scanf("%lld", &a[i]);
	vector<int> res(n);
	if (n > 22) a.resize(22);
	n = a.size();
	for (int S = 0; S < (1 << n); S++) {
		int sum = 0;
		for (int i = 0; i < n; i++) {
			if (S >> i & 1) sum += a[i];
		}
		dp[sum].push_back(S);
	}
	for (int i = 0; i < mx; i++) if (dp[i].size() >= 2) {
		int S1 = dp[i][0];
		int S2 = dp[i][1];
		puts("Yes");
		for (int i = 0; i < n; i++) {
			if (S1 >> i & 1) {
				res[i] = a[i];
			}
			if (S2 >> i & 1) {
				res[i] = -a[i];
			}
		}
		for (int i = 0; i < res.size(); i++) {
			cout << res[i];
			if (i == (int)res.size() - 1) cout << "\n";
			else cout << " ";
		}
		return 0;
	}
	puts("No");
	return 0;
}
0