結果

問題 No.1017 Reiwa Sequence
ユーザー GGanariGGanari
提出日時 2024-05-24 10:17:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 855 bytes
コンパイル時間 1,962 ms
コンパイル使用メモリ 203,580 KB
実行使用メモリ 20,804 KB
最終ジャッジ日時 2024-05-24 10:18:03
合計ジャッジ時間 32,241 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
19,576 KB
testcase_01 AC 7 ms
19,528 KB
testcase_02 AC 7 ms
19,572 KB
testcase_03 AC 7 ms
19,608 KB
testcase_04 AC 6 ms
19,568 KB
testcase_05 AC 6 ms
19,604 KB
testcase_06 AC 6 ms
19,604 KB
testcase_07 AC 7 ms
19,616 KB
testcase_08 AC 7 ms
19,584 KB
testcase_09 AC 7 ms
19,496 KB
testcase_10 AC 7 ms
19,568 KB
testcase_11 AC 8 ms
19,584 KB
testcase_12 AC 7 ms
19,592 KB
testcase_13 AC 7 ms
19,492 KB
testcase_14 AC 7 ms
19,596 KB
testcase_15 AC 8 ms
19,568 KB
testcase_16 AC 7 ms
19,460 KB
testcase_17 AC 9 ms
19,580 KB
testcase_18 AC 7 ms
19,600 KB
testcase_19 AC 84 ms
19,660 KB
testcase_20 AC 84 ms
19,496 KB
testcase_21 AC 83 ms
19,612 KB
testcase_22 AC 86 ms
19,616 KB
testcase_23 AC 84 ms
19,644 KB
testcase_24 AC 80 ms
19,676 KB
testcase_25 AC 80 ms
19,428 KB
testcase_26 AC 88 ms
19,496 KB
testcase_27 AC 57 ms
19,608 KB
testcase_28 AC 64 ms
19,600 KB
testcase_29 AC 9 ms
19,580 KB
testcase_30 AC 11 ms
19,608 KB
testcase_31 AC 18 ms
19,460 KB
testcase_32 AC 41 ms
19,436 KB
testcase_33 AC 8 ms
19,432 KB
testcase_34 AC 48 ms
19,464 KB
testcase_35 AC 7 ms
19,636 KB
testcase_36 AC 7 ms
19,596 KB
testcase_37 AC 44 ms
19,524 KB
testcase_38 AC 7 ms
19,556 KB
testcase_39 AC 45 ms
19,608 KB
testcase_40 AC 103 ms
20,352 KB
testcase_41 AC 101 ms
20,280 KB
testcase_42 AC 105 ms
20,356 KB
testcase_43 AC 111 ms
20,200 KB
testcase_44 AC 19 ms
20,296 KB
testcase_45 AC 108 ms
20,300 KB
testcase_46 AC 98 ms
20,364 KB
testcase_47 AC 98 ms
20,252 KB
testcase_48 AC 29 ms
20,788 KB
testcase_49 AC 29 ms
20,736 KB
testcase_50 AC 29 ms
20,804 KB
testcase_51 AC 6 ms
19,588 KB
testcase_52 AC 93 ms
19,500 KB
testcase_53 AC 26 ms
19,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define INF 1000000001
#define MOD 1000000007
#define long long long
#define all(x) x.begin(),x.end()
using namespace std;

int main()
{
	ios_base::sync_with_stdio(0); 
    cin.tie(0);
	
	int n;
	cin >> n;

	vector<int> arr(n);
	for(int i = 0; i<n; i++)
		cin >> arr[i];

	int l = min(22,n);
	vector<int> res(n);
	vector<int> vis(1<<22); 
	for(int i = 0; i<(1<<l); i++)
	{
		int hap = 0;
		for(int j = 0; j<l; j++)
		{
			if(i&(1<<j))
			{
				hap+=arr[j];
			}
		}
		if(vis[hap])
		{
			for(int j = 0; j<l; j++)
			{
				if(i&(1<<j))
					res[j]--;
				if(vis[hap]&(1<<j))
					res[j]++;
			}
			cout << "Yes\n";
			for(int k = 0; k<n; k++)
				cout << res[k]*arr[k] << " ";
			cout << "\n";
			return 0;
		}
		for(int j = 0; j<l; j++)
		{
			if(i&(1<<j))
			{
				vis[hap]|=1<<j;
			}
		}
	}
	cout << "No\n";


	
    return 0;
}
0