結果

問題 No.1017 Reiwa Sequence
ユーザー satashunsatashun
提出日時 2020-04-03 21:53:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,965 bytes
コンパイル時間 1,981 ms
コンパイル使用メモリ 205,920 KB
実行使用メモリ 243,104 KB
最終ジャッジ日時 2024-07-03 02:22:28
合計ジャッジ時間 34,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
32,328 KB
testcase_01 AC 8 ms
21,964 KB
testcase_02 AC 6 ms
15,944 KB
testcase_03 AC 21 ms
54,856 KB
testcase_04 AC 6 ms
15,816 KB
testcase_05 AC 11 ms
32,328 KB
testcase_06 AC 9 ms
26,188 KB
testcase_07 AC 7 ms
17,992 KB
testcase_08 AC 6 ms
16,072 KB
testcase_09 AC 42 ms
91,204 KB
testcase_10 AC 85 ms
131,784 KB
testcase_11 AC 34 ms
88,008 KB
testcase_12 AC 105 ms
148,040 KB
testcase_13 AC 113 ms
155,592 KB
testcase_14 AC 34 ms
84,172 KB
testcase_15 AC 42 ms
90,700 KB
testcase_16 AC 35 ms
86,732 KB
testcase_17 AC 53 ms
103,496 KB
testcase_18 AC 35 ms
86,216 KB
testcase_19 AC 78 ms
123,592 KB
testcase_20 AC 81 ms
130,248 KB
testcase_21 AC 84 ms
128,200 KB
testcase_22 AC 82 ms
131,528 KB
testcase_23 AC 82 ms
125,384 KB
testcase_24 AC 76 ms
120,008 KB
testcase_25 AC 78 ms
118,344 KB
testcase_26 AC 65 ms
101,960 KB
testcase_27 AC 89 ms
129,996 KB
testcase_28 AC 77 ms
128,840 KB
testcase_29 AC 82 ms
128,072 KB
testcase_30 AC 79 ms
121,420 KB
testcase_31 AC 81 ms
128,840 KB
testcase_32 AC 77 ms
125,900 KB
testcase_33 AC 74 ms
117,576 KB
testcase_34 AC 72 ms
127,688 KB
testcase_35 AC 55 ms
89,800 KB
testcase_36 AC 82 ms
120,136 KB
testcase_37 AC 70 ms
128,968 KB
testcase_38 AC 64 ms
101,068 KB
testcase_39 AC 77 ms
123,592 KB
testcase_40 AC 236 ms
243,104 KB
testcase_41 AC 232 ms
234,272 KB
testcase_42 AC 236 ms
235,260 KB
testcase_43 AC 231 ms
237,212 KB
testcase_44 AC 99 ms
65,312 KB
testcase_45 AC 231 ms
232,988 KB
testcase_46 AC 234 ms
228,104 KB
testcase_47 AC 219 ms
212,864 KB
testcase_48 AC 266 ms
238,176 KB
testcase_49 AC 119 ms
66,660 KB
testcase_50 AC 119 ms
65,632 KB
testcase_51 AC 5 ms
11,716 KB
testcase_52 WA -
testcase_53 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
using pii = pair<int, int>;
template<class T> using V = vector<T>;
template<class T> using VV = V<V<T>>;

#define pb push_back
#define eb emplace_back
#define mp make_pair
#define fi first
#define se second
#define rep(i,n) rep2(i,0,n)
#define rep2(i,m,n) for(int i=m;i<(n);i++)
#define ALL(c) (c).begin(),(c).end()

#ifdef LOCAL
#define dump(x) cerr << __LINE__ << " " << #x << " = " << (x) << endl
#else 
#define dump(x) true
#endif

constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n-1); }

template<class T, class U> void chmin(T& t, const U& u) { if (t > u) t = u; }
template<class T, class U> void chmax(T& t, const U& u) { if (t < u) t = u; }

template<class T, class U>
ostream& operator<<(ostream& os, const pair<T, U>& p) {
	os<<"("<<p.first<<","<<p.second<<")";
	return os;
}

template<class T>
ostream& operator<<(ostream& os, const vector<T>& v) {
	os<<"{";
	rep(i, v.size()) {
		if (i) os<<",";
		os<<v[i];
	}
	os<<"}";
	return os;
}

const int B = 15000 * 20 + 5;
const int SZ = B * 2;

bool dp[41][2][SZ];
pii pre[41][2][SZ];

int main() {
	dp[0][0][B] = 1;
	int N; cin >> N;
	V<int> A(N), ans(N);
	rep(i, N) {
		cin >> A[i];
	}
	int now = 0;
	rep(i, min(N, 40)) {
		rep(k, 2) {
			rep(j, SZ) {
				if (dp[i][k][j]) {
					if (j + A[i] < SZ) {
						dp[i+1][1][j + A[i]] = 1;
						pre[i+1][1][j + A[i]] = mp(k, j);
					}
					dp[i+1][k][j] = 1;
					pre[i+1][k][j] = mp(k, j);
					if (j - A[i] >= 0) {
						dp[i+1][1][j - A[i]] = 1;
						pre[i+1][1][j - A[i]] = mp(k, j);
					}					
				}
			}
		}
		now++;
	}

	if (!dp[now][1][B]) {
		puts("No");
		return 0;
	}

	int p = now, k = 1, v = B;
	rep(t, now) {
		pii nx = pre[p][k][v];
		--p;
		if (nx.se < v) {
			ans[p] = 1;
		} else if (nx.se > v) {
			ans[p] = -1;
		} else {
			ans[p] = 0;
		}
		tie(k, v) = nx;
	}

	puts("Yes");
	rep(i, N) {
		printf("%d%c", ans[i] * A[i], i == N-1 ? '\n' : ' ');
	}

	return 0;
}
0