結果

問題 No.1017 Reiwa Sequence
ユーザー satashunsatashun
提出日時 2020-04-03 21:52:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,965 bytes
コンパイル時間 2,456 ms
コンパイル使用メモリ 205,996 KB
実行使用メモリ 337,212 KB
最終ジャッジ日時 2024-07-03 02:18:11
合計ジャッジ時間 33,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
32,456 KB
testcase_01 AC 8 ms
21,964 KB
testcase_02 AC 6 ms
15,944 KB
testcase_03 AC 20 ms
52,936 KB
testcase_04 AC 7 ms
16,072 KB
testcase_05 AC 12 ms
34,504 KB
testcase_06 AC 10 ms
26,184 KB
testcase_07 AC 6 ms
15,944 KB
testcase_08 AC 7 ms
18,124 KB
testcase_09 AC 43 ms
88,008 KB
testcase_10 AC 101 ms
126,536 KB
testcase_11 AC 41 ms
82,124 KB
testcase_12 AC 129 ms
147,912 KB
testcase_13 AC 135 ms
151,368 KB
testcase_14 AC 43 ms
81,352 KB
testcase_15 AC 50 ms
90,188 KB
testcase_16 AC 42 ms
82,628 KB
testcase_17 AC 64 ms
98,632 KB
testcase_18 AC 43 ms
81,988 KB
testcase_19 AC 91 ms
120,392 KB
testcase_20 AC 98 ms
127,300 KB
testcase_21 AC 98 ms
124,232 KB
testcase_22 AC 97 ms
126,536 KB
testcase_23 AC 90 ms
120,648 KB
testcase_24 AC 82 ms
114,116 KB
testcase_25 AC 88 ms
113,100 KB
testcase_26 AC 71 ms
94,148 KB
testcase_27 AC 70 ms
126,280 KB
testcase_28 AC 69 ms
123,468 KB
testcase_29 AC 99 ms
123,848 KB
testcase_30 AC 91 ms
116,168 KB
testcase_31 AC 96 ms
122,696 KB
testcase_32 AC 92 ms
120,392 KB
testcase_33 AC 86 ms
111,816 KB
testcase_34 AC 64 ms
125,132 KB
testcase_35 AC 57 ms
83,784 KB
testcase_36 AC 74 ms
117,064 KB
testcase_37 AC 64 ms
124,108 KB
testcase_38 AC 62 ms
95,304 KB
testcase_39 AC 69 ms
118,092 KB
testcase_40 TLE -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

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[40][2][SZ];
pii pre[40][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