結果

問題 No.1017 Reiwa Sequence
ユーザー chocopuuchocopuu
提出日時 2020-04-19 16:57:59
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 571 ms / 2,000 ms
コード長 1,369 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 212,032 KB
実行使用メモリ 38,088 KB
最終ジャッジ日時 2024-07-03 08:59:11
合計ジャッジ時間 42,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 483 ms
36,224 KB
testcase_20 AC 505 ms
36,224 KB
testcase_21 AC 515 ms
36,224 KB
testcase_22 AC 486 ms
36,224 KB
testcase_23 AC 406 ms
36,224 KB
testcase_24 AC 398 ms
36,224 KB
testcase_25 AC 366 ms
36,224 KB
testcase_26 AC 318 ms
36,224 KB
testcase_27 AC 281 ms
24,576 KB
testcase_28 AC 366 ms
27,904 KB
testcase_29 AC 7 ms
5,376 KB
testcase_30 AC 11 ms
5,376 KB
testcase_31 AC 35 ms
7,552 KB
testcase_32 AC 164 ms
19,840 KB
testcase_33 AC 5 ms
5,376 KB
testcase_34 AC 154 ms
19,840 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 174 ms
19,840 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 188 ms
19,840 KB
testcase_40 AC 571 ms
38,088 KB
testcase_41 AC 510 ms
38,064 KB
testcase_42 AC 539 ms
38,040 KB
testcase_43 AC 507 ms
37,916 KB
testcase_44 AC 36 ms
5,376 KB
testcase_45 AC 503 ms
37,932 KB
testcase_46 AC 427 ms
38,040 KB
testcase_47 AC 343 ms
37,900 KB
testcase_48 AC 58 ms
6,768 KB
testcase_49 AC 57 ms
6,632 KB
testcase_50 AC 61 ms
6,760 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 365 ms
35,968 KB
testcase_53 AC 74 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define REP(i, n) for (int i = 0; i < (int)n; ++i)
#define RREP(i, n) for (int i = (int)n - 1; i >= 0; --i)
#define FOR(i, s, n) for (int i = s; i < (int)n; ++i)
#define RFOR(i, s, n) for (int i = (int)n - 1; i >= s; --i)
#define ALL(a) a.begin(), a.end()
#define IN(a, x, b) (a <= x && x < b)
template<class T>inline void out(T t){cout << t << "\n";}
template<class T,class... Ts>inline void out(T t,Ts... ts){cout << t << " ";out(ts...);}
template<class T>inline bool CHMIN(T&a,T b){if(a > b){a = b;return true;}return false;}
template<class T>inline bool CHMAX(T&a,T b){if(a < b){a = b;return true;}return false;}
constexpr int INF = 1e9;

signed main(){
	int N;
	cin >> N;
	vector<int>a(N);
	REP(i,N){
		cin >> a[i];
	}
	int n = N;
	CHMIN(N,22ll);
	map<int,int>mp;
	REP(i,1ll << N){
		int sum = 0;
		REP(j,N){
			if((1ll << j) & i){
				sum += a[j];
			}
		}
		if(mp.count(sum)){
			int I = mp[sum];
			int J = i;
			int kaburi = I & J;
			I ^= kaburi;
			J ^= kaburi;
			vector<int>ans;
			REP(j,N){
				if((1ll << j) & I)ans.emplace_back(a[j]);
				else if((1ll << j) & J)ans.emplace_back(-a[j]);
				else ans.emplace_back(0);
			}
			FOR(j,N,n)ans.emplace_back(0);
			out("Yes");
			REP(i,ans.size())cout << ans[i] << " \n"[i+1 == ans.size()];
			return 0;
		}else mp[sum] = i;
	}
	out("No");
}
0