結果

問題 No.1017 Reiwa Sequence
ユーザー GGanariGGanari
提出日時 2024-05-24 10:17:23
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 855 bytes
コンパイル時間 2,546 ms
コンパイル使用メモリ 203,120 KB
実行使用メモリ 20,812 KB
最終ジャッジ日時 2024-12-20 19:16:58
合計ジャッジ時間 41,783 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
19,656 KB
testcase_01 AC 8 ms
19,584 KB
testcase_02 AC 8 ms
19,460 KB
testcase_03 AC 7 ms
19,612 KB
testcase_04 AC 8 ms
19,604 KB
testcase_05 AC 8 ms
19,620 KB
testcase_06 AC 8 ms
19,644 KB
testcase_07 AC 8 ms
19,496 KB
testcase_08 AC 8 ms
19,452 KB
testcase_09 AC 8 ms
19,588 KB
testcase_10 AC 9 ms
19,652 KB
testcase_11 AC 9 ms
19,596 KB
testcase_12 AC 10 ms
19,648 KB
testcase_13 AC 8 ms
19,568 KB
testcase_14 AC 9 ms
19,684 KB
testcase_15 AC 9 ms
19,592 KB
testcase_16 AC 8 ms
19,632 KB
testcase_17 AC 11 ms
19,584 KB
testcase_18 AC 9 ms
19,428 KB
testcase_19 AC 106 ms
19,616 KB
testcase_20 AC 112 ms
19,604 KB
testcase_21 AC 116 ms
19,432 KB
testcase_22 AC 121 ms
19,604 KB
testcase_23 AC 103 ms
19,608 KB
testcase_24 AC 106 ms
19,464 KB
testcase_25 AC 99 ms
19,676 KB
testcase_26 AC 93 ms
19,568 KB
testcase_27 AC 71 ms
19,588 KB
testcase_28 AC 84 ms
19,584 KB
testcase_29 AC 11 ms
19,496 KB
testcase_30 AC 13 ms
19,616 KB
testcase_31 AC 22 ms
19,456 KB
testcase_32 AC 54 ms
19,600 KB
testcase_33 AC 10 ms
19,604 KB
testcase_34 AC 58 ms
19,516 KB
testcase_35 AC 8 ms
19,768 KB
testcase_36 AC 8 ms
19,424 KB
testcase_37 AC 56 ms
19,604 KB
testcase_38 AC 8 ms
19,564 KB
testcase_39 AC 61 ms
19,580 KB
testcase_40 AC 130 ms
20,184 KB
testcase_41 AC 130 ms
20,188 KB
testcase_42 AC 128 ms
20,244 KB
testcase_43 AC 134 ms
20,352 KB
testcase_44 AC 23 ms
20,188 KB
testcase_45 AC 124 ms
20,404 KB
testcase_46 AC 124 ms
20,276 KB
testcase_47 AC 115 ms
20,304 KB
testcase_48 AC 33 ms
20,744 KB
testcase_49 AC 32 ms
20,812 KB
testcase_50 AC 34 ms
20,744 KB
testcase_51 AC 7 ms
19,492 KB
testcase_52 AC 101 ms
19,432 KB
testcase_53 AC 27 ms
19,616 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