結果

問題 No.1017 Reiwa Sequence
ユーザー はまやんはまやんはまやんはまやん
提出日時 2020-04-04 17:10:26
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,067 ms / 2,000 ms
コード長 2,023 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 202,096 KB
実行使用メモリ 146,560 KB
最終ジャッジ日時 2024-07-03 07:34:58
合計ジャッジ時間 46,517 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
97,536 KB
testcase_01 AC 48 ms
97,524 KB
testcase_02 AC 40 ms
97,664 KB
testcase_03 AC 38 ms
97,792 KB
testcase_04 AC 38 ms
97,536 KB
testcase_05 AC 37 ms
97,536 KB
testcase_06 AC 39 ms
97,664 KB
testcase_07 AC 38 ms
97,664 KB
testcase_08 AC 38 ms
97,620 KB
testcase_09 AC 40 ms
97,792 KB
testcase_10 AC 156 ms
108,328 KB
testcase_11 AC 39 ms
97,556 KB
testcase_12 AC 985 ms
138,832 KB
testcase_13 AC 968 ms
138,368 KB
testcase_14 AC 49 ms
97,536 KB
testcase_15 AC 49 ms
97,536 KB
testcase_16 AC 47 ms
97,384 KB
testcase_17 AC 51 ms
98,048 KB
testcase_18 AC 49 ms
97,524 KB
testcase_19 AC 181 ms
113,744 KB
testcase_20 AC 187 ms
113,828 KB
testcase_21 AC 193 ms
113,792 KB
testcase_22 AC 195 ms
113,888 KB
testcase_23 AC 180 ms
113,832 KB
testcase_24 AC 181 ms
113,900 KB
testcase_25 AC 169 ms
113,868 KB
testcase_26 AC 161 ms
113,792 KB
testcase_27 AC 175 ms
113,896 KB
testcase_28 AC 167 ms
114,048 KB
testcase_29 AC 176 ms
113,792 KB
testcase_30 AC 173 ms
113,664 KB
testcase_31 AC 168 ms
112,896 KB
testcase_32 AC 162 ms
112,128 KB
testcase_33 AC 140 ms
109,824 KB
testcase_34 AC 166 ms
109,876 KB
testcase_35 AC 117 ms
109,824 KB
testcase_36 AC 150 ms
109,864 KB
testcase_37 AC 175 ms
111,932 KB
testcase_38 AC 152 ms
112,128 KB
testcase_39 AC 176 ms
112,000 KB
testcase_40 AC 1,067 ms
145,280 KB
testcase_41 AC 1,036 ms
144,512 KB
testcase_42 AC 1,066 ms
146,560 KB
testcase_43 AC 1,031 ms
145,152 KB
testcase_44 AC 341 ms
118,640 KB
testcase_45 AC 974 ms
143,348 KB
testcase_46 AC 911 ms
143,104 KB
testcase_47 AC 749 ms
140,288 KB
testcase_48 AC 876 ms
137,088 KB
testcase_49 AC 346 ms
116,224 KB
testcase_50 AC 348 ms
117,312 KB
testcase_51 AC 46 ms
97,488 KB
testcase_52 AC 176 ms
114,008 KB
testcase_53 AC 153 ms
113,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
//#pragma GCC optimize ("-O3")
using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); }
typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60;
template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }
//---------------------------------------------------------------------------------------------------
/*---------------------------------------------------------------------------------------------------
            ∧_∧
      ∧_∧  (´<_` )  Welcome to My Coding Space!
     ( ´_ゝ`) /  ⌒i     @hamayanhamayan0
    /   \     | |
    /   / ̄ ̄ ̄ ̄/  |
  __(__ニつ/     _/ .| .|____
     \/____/ (u ⊃
---------------------------------------------------------------------------------------------------*/














int N, A[151010];
vector<int> msks[4010101];
//---------------------------------------------------------------------------------------------------
void _main() {
	cin >> N;
	rep(i, 0, N) cin >> A[i];

	int M = min(22, N);
	rep(msk, 0, 1 << M) {
		int sm = 0;
		rep(i, 0, M) if (msk & (1 << i)) sm += A[i];
		msks[sm].push_back(msk);
	}

	rep(tot, 1, 4010101) if (1 < msks[tot].size()) {
		int plus = msks[tot][0];
		int minus = msks[tot][1];

		printf("Yes\n");
		rep(i, 0, M) {
			if (i) printf(" ");

			if (plus & (1 << i)) printf("%d", A[i]);
			else if (minus & (1 << i)) printf("-%d", A[i]);
			else printf("0");
		}
		rep(i, M, N) printf(" 0");
		printf("\n");

		return;
	}

	printf("No\n");
}





0