結果

問題 No.1017 Reiwa Sequence
ユーザー jupirojupiro
提出日時 2020-04-10 21:09:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
J_TLE  
(最初)
実行時間 -
コード長 1,737 bytes
コンパイル時間 1,172 ms
コンパイル使用メモリ 119,612 KB
実行使用メモリ 130,364 KB
最終ジャッジ日時 2024-07-03 08:45:56
合計ジャッジ時間 45,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
80,900 KB
testcase_01 AC 42 ms
80,944 KB
testcase_02 AC 32 ms
80,892 KB
testcase_03 AC 33 ms
80,852 KB
testcase_04 AC 33 ms
80,904 KB
testcase_05 AC 34 ms
81,004 KB
testcase_06 AC 34 ms
80,956 KB
testcase_07 AC 33 ms
80,876 KB
testcase_08 AC 33 ms
80,812 KB
testcase_09 AC 34 ms
81,096 KB
testcase_10 AC 152 ms
91,548 KB
testcase_11 AC 35 ms
80,932 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 40 ms
80,984 KB
testcase_15 AC 44 ms
80,920 KB
testcase_16 AC 42 ms
80,968 KB
testcase_17 AC 45 ms
81,436 KB
testcase_18 AC 41 ms
80,948 KB
testcase_19 AC 172 ms
97,288 KB
testcase_20 AC 177 ms
97,388 KB
testcase_21 AC 183 ms
97,268 KB
testcase_22 AC 187 ms
97,308 KB
testcase_23 AC 172 ms
97,284 KB
testcase_24 AC 174 ms
97,188 KB
testcase_25 AC 160 ms
97,356 KB
testcase_26 AC 159 ms
97,304 KB
testcase_27 AC 170 ms
97,212 KB
testcase_28 AC 159 ms
97,216 KB
testcase_29 AC 166 ms
97,036 KB
testcase_30 AC 164 ms
97,012 KB
testcase_31 AC 163 ms
96,236 KB
testcase_32 AC 161 ms
95,460 KB
testcase_33 AC 133 ms
93,272 KB
testcase_34 AC 160 ms
93,212 KB
testcase_35 AC 114 ms
93,180 KB
testcase_36 AC 145 ms
93,264 KB
testcase_37 AC 171 ms
95,348 KB
testcase_38 AC 152 ms
95,260 KB
testcase_39 AC 165 ms
95,240 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 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 40 ms
80,824 KB
testcase_52 AC 171 ms
97,140 KB
testcase_53 AC 145 ms
97,248 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 == n - 1) cout << "\n";
			else cout << " ";
		}
		return 0;
	}
	puts("No");
	return 0;
}
0