結果

問題 No.1017 Reiwa Sequence
ユーザー QCFiumQCFium
提出日時 2020-04-03 22:11:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 1,704 ms
コンパイル使用メモリ 167,812 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-07-03 03:21:27
合計ジャッジ時間 34,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}
int main() {
	int n = ri();
	int a[n];
	for (auto &i : a) i = ri();
	int x = std::min(n, 22);
	static int used[22 * 150000 * 2 + 1];
	for (auto &i : used) i = -1;
	for (int i = 1; i < 1 << x; i++) {
		int cur = 0;
		for (int j = 0; j < x; j++) if (i >> j & 1) cur += a[j];
		if (used[cur + 22 * 150000] != -1) {
			puts("Yes");
			for (int j = 0; j < n; j++) {
				if (j < x) printf("%d ", a[j] * ((i >> j & 1) - (used[cur + 22 * 150000] >> j & 1)));
				else printf("0 ");
			}
			puts("");
			return 0;
		}
		used[cur + 22 * 150000] = i;
	}
	puts("No");
	return 0;
}
0