結果

問題 No.1017 Reiwa Sequence
ユーザー b2563125b2563125
提出日時 2020-04-03 21:54:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 6,418 bytes
コンパイル時間 1,604 ms
コンパイル使用メモリ 126,568 KB
実行使用メモリ 38,384 KB
最終ジャッジ日時 2023-09-16 01:15:56
合計ジャッジ時間 13,583 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
17,336 KB
testcase_01 AC 6 ms
14,764 KB
testcase_02 AC 6 ms
13,888 KB
testcase_03 AC 8 ms
21,840 KB
testcase_04 AC 7 ms
13,724 KB
testcase_05 AC 7 ms
15,896 KB
testcase_06 AC 7 ms
14,660 KB
testcase_07 AC 6 ms
13,628 KB
testcase_08 AC 6 ms
13,692 KB
testcase_09 AC 10 ms
25,364 KB
testcase_10 AC 12 ms
33,536 KB
testcase_11 AC 9 ms
24,216 KB
testcase_12 AC 13 ms
37,012 KB
testcase_13 AC 12 ms
37,228 KB
testcase_14 AC 10 ms
24,288 KB
testcase_15 AC 9 ms
25,488 KB
testcase_16 AC 9 ms
24,152 KB
testcase_17 AC 11 ms
27,644 KB
testcase_18 AC 9 ms
24,084 KB
testcase_19 AC 62 ms
33,512 KB
testcase_20 AC 59 ms
33,516 KB
testcase_21 AC 59 ms
33,560 KB
testcase_22 AC 63 ms
33,716 KB
testcase_23 AC 58 ms
33,696 KB
testcase_24 AC 57 ms
33,656 KB
testcase_25 AC 58 ms
33,508 KB
testcase_26 AC 57 ms
33,320 KB
testcase_27 AC 41 ms
33,556 KB
testcase_28 AC 47 ms
33,328 KB
testcase_29 AC 13 ms
33,540 KB
testcase_30 AC 14 ms
33,540 KB
testcase_31 AC 17 ms
33,524 KB
testcase_32 AC 35 ms
33,528 KB
testcase_33 AC 12 ms
33,528 KB
testcase_34 AC 35 ms
33,516 KB
testcase_35 AC 12 ms
33,620 KB
testcase_36 AC 12 ms
33,536 KB
testcase_37 AC 36 ms
33,516 KB
testcase_38 AC 11 ms
33,620 KB
testcase_39 AC 34 ms
33,524 KB
testcase_40 AC 95 ms
37,800 KB
testcase_41 AC 96 ms
37,776 KB
testcase_42 AC 94 ms
37,600 KB
testcase_43 AC 97 ms
37,932 KB
testcase_44 AC 46 ms
37,796 KB
testcase_45 AC 95 ms
37,796 KB
testcase_46 AC 95 ms
37,724 KB
testcase_47 AC 92 ms
37,628 KB
testcase_48 AC 66 ms
38,384 KB
testcase_49 AC 64 ms
38,128 KB
testcase_50 AC 67 ms
38,252 KB
testcase_51 AC 6 ms
12,352 KB
testcase_52 AC 57 ms
33,632 KB
testcase_53 AC 22 ms
33,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:19: 警告: "M_PI" が再定義されました
   19 | #define M_PI 3.141592653589793238
      | 
次のファイルから読み込み:  /usr/local/gcc7/include/c++/12.2.0/cmath:45,
         次から読み込み:  main.cpp:14:
/usr/include/math.h:1070: 備考: ここが以前の宣言がある位置です
 1070 | # define M_PI           3.14159265358979323846  /* pi */
      | 

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<queue>
#include<stack>
#include<bitset>
#include<functional>
#include<map>
#include<iomanip>
#include<limits>
#include<unordered_set>
#include<cmath>
#include <numeric>
#include <array>
#include<utility>
#include <complex>
#define M_PI 3.141592653589793238
using namespace std;
//long long p = 998244353;
long long p = 1000000007;
#define int long long
#define ll long long
#define vel vector<ll>
#define vvel vector<vel>
#define rep(i,n) for(int i=0;i<n;i++)
#define sor(v) sort(v.begin(),v.end())
#define mmax(a,b) a=max(a,b)
#define mmin(a,b) a=min(a,b)
#define mkp(a,b) make_pair(a,b)
#define pin pair<ll,ll>
#define qin pair<pin,int>
#define V vector
#define Endl endl
#define veb vector<bool>
#define fcout cout << fixed << setprecision(15)
#define rev(s) reverse(s.begin(),s.end())
#define lower(h,val) (lower_bound(h.begin(),h.end(),val)-h.begin())
#define upper(h,val) (upper_bound(h.begin(),h.end(),val)-h.begin())
vel kai;
vel inv_kai;
int rui(int a, int n, int mod) {
	if (n == 0) { return 1 % mod; }
	int x = rui(a, n / 2, mod);
	x *= x; x %= mod;
	if (n % 2 == 1) { x *= a; x %= mod; }
	return x;
}
int root(int x, vel& pa) {
	if (pa[x] == -1) { return x; }
	int ans = root(pa[x], pa); pa[x] = ans;
	return ans;
}
bool mar(int x, int y, vel& pa) {
	x = root(x, pa);
	y = root(y, pa);
	if (x != y) { pa[x] = y; }
	return (x != y);
}
int gcd(int x, int y) {
	if (x < y) { return gcd(y, x); }
	if (y == 0) { return x; }
	return gcd(y, x % y);
}
int lcm(ll x, ll y) {
	x = abs(x); y = abs(y);
	return x * y / gcd(x, y);
}
long long modinv(long long a, long long m) {
	long long b = m, u = 1, v = 0;
	while (b) {
		long long t = a / b;
		a -= t * b; swap(a, b);
		u -= t * v; swap(u, v);
	}
	u %= m;
	if (u < 0) u += m;
	return u;
}
void make_kai(int max_kai) {
	kai = vel(max_kai, 1);
	inv_kai = kai;
	rep(i, max_kai - 1) {
		kai[i + 1] = kai[i] * (i + 1); kai[i + 1] %= p;
		inv_kai[i + 1] = modinv(kai[i + 1], p);
	}
}
int com(int n, int r) {
	if ((n < 0) || (r < 0) || (r > n)) { return 0; }
	int ans = (kai[n] * inv_kai[r]) % p;
	return (ans * inv_kai[n - r]) % p;
}
vel uni(vel x) {
	if (x.size() == 0) { return x; }
	sor(x);
	int n = x.size();
	vel ans(1, x[0]);
	for (int j = 1; j < n; j++) {
		if (x[j - 1] != x[j]) { ans.push_back(x[j]); }
	}
	x = ans;
	return x;
}
void pr(vel& v) {
	int n = v.size();
	if (n != 0) {
		cout << v[0];
		rep(i, n - 1) {
			cout << " " << v[i + 1];
		}
		cout << endl;
	}
}
vel dijk(V<V<pin>>& way, int st, int inf) {
	int n = way.size();
	vel dist(n, inf); dist[st] = 0;
	priority_queue<pin, vector<pin>, greater<pin>> pq;
	pq.push(mkp(0, st));
	veb is_checked(n, false);
	while (!pq.empty()) {
		pin x = pq.top(); pq.pop();
		int pot = x.second;
		if (!is_checked[pot]) {
			is_checked[pot] = true;
			for (auto y : way[pot]) {
				int nex_dist = x.first + y.second;
				int nex_pot = y.first;
				if (dist[nex_pot] > nex_dist) {
					dist[nex_pot] = nex_dist;
					pq.push(mkp(nex_dist, y.first));
				}
			}
		}
	}
	return dist;
}
vel mul(vel& a, vel& b) {
	int n = a.size();
	int m = b.size();
	vel ans(n + m - 1, 0);
	rep(i, n) {
		rep(j, m) {
			ans[i + j] += a[i] * b[j];
			ans[i + j] %= p;
		}
	}
	return ans;
}
vel rui_p(vel& a, int n) {
	if (n == 0) { return { 1 }; }
	vel qans = rui_p(a, n / 2);
	qans = mul(qans, qans);
	if (n % 2 == 1) {
		qans = mul(qans, a);
	}
	return qans;
}
bool is_prime(int n) {
	if (n == 0 || n == 1) { return false; }
	for (int i = 2; i * i <= n; i++) {
		if (n % i == 0) { return false; }
	}
	return true;
}
#define bs bitset<50>
void per(int& ans) {
	ans %= p;
	if (ans < 0) { ans += p; }
}
#define upperbound(v,val) upper_bound(v.begin(),v.end(),val)-v.begin()
#define lowerbound(v,val) lower_bound(v.begin(),v.end(),val)-v.begin()
#define mat V<V<pin>>
vvel disj_min(vel& v) {
	int n = v.size();
	vvel ret(22, vel(n));
	ret[0] = v;
	rep(i, 21) {
		rep(j, n) {
			int nex = j + (1 << i);
			if (nex < n) {
				ret[i + 1][j] = min(ret[i][j], ret[i][nex]);
			}
			else {
				ret[i + 1][j] = ret[i][j];
			}
		}
	}
	return ret;
}
vvel disj_max(vel& v) {
	int n = v.size();
	vvel ret(22, vel(n));
	ret[0] = v;
	rep(i, 21) {
		rep(j, n) {
			int nex = j + (1 << i);
			if (nex < n) {
				ret[i + 1][j] = max(ret[i][j], ret[i][nex]);
			}
			else {
				ret[i + 1][j] = ret[i][j];
			}
		}
	}
	return ret;
}
int find_min(vvel& dv, int l, int r) {
	int i = 21;
	while (l + (1 << i) > r) {
		i--;
	}
	return min(dv[i][l], dv[i][r - (1 << i)]);
}
int find_max(vvel& dv, int l, int r) {
	int i = 21;
	while (l + (1 << i) > r) {
		i--;
	}
	return max(dv[i][l], dv[i][r - (1 << i)]);
}
void pri(vel& v) {
	if (v.size() == 0) { return; }
	cout << v[0];
	rep(i, v.size() - 1) { cout << " " << v[i + 1]; }
	cout << endl;
	return;
}
vvel dbl(vel& v) {
	vvel ans(20, vel(v));
	int n = v.size();
	rep(i, 19) {
		rep(j, n) {
			ans[i + 1][j] = ans[i][ans[i][j]];
		}
	}
	return ans;
}
int lca(int s, int t, int diff, vvel& pa) {
	if (diff < 0) { return lca(t, s, -diff, pa); }
	rep(i, 19) {
		if ((diff & (1 << i)) != 0) {
			s = pa[i][s];
		}
	}
	for (int i = 19; i >= 0; i--) {
		if (pa[i][s] != pa[i][t]) {
			s = pa[i][s];
			t = pa[i][t];
		}
	}
	if (s != t) {
		s = pa[0][s];
	}
	return s;
}
int sz = 1024 * 1024;
vel bit(sz + 1, 0);
void add(int a, int w) {
	while (a <= sz) {
		bit[a] += w;
		a += (a & (-a));
	}
}
int sum(int a) {
	int ans = 0;
	while (a != 0) {
		ans += bit[a];
		a -= (a & (-a));
	}
	return ans;
}
#define vveb V<veb>
#define omajinai cin.tie(0);ios::sync_with_stdio(false);
#define endl "\n"
int modpow(int a, int n, int p) {
	if (n == 0) { return 1; }
	int m = n / 2;
	int x = modpow(a, n / 2, p);
	x *= x; x %= p;
	if (n % 2 == 1) { x *= a; x %= p; }
	return x;
}
void solve(int x, int y, int m, vel& a) {

	int n = a.size();
	cout << "Yes" << endl;
	rep(i, n) {
		int pr = 0;
		if (i < m) {
			if ((x & (1 << i)) != 0) { pr += a[i]; }
			if ((y & (1 << i)) != 0) { pr -= a[i]; }
		}
		cout << pr;
		if (i != n - 1) { cout << " "; }
	}
	cout << endl;
}
signed main() {
	int n; cin >> n;
	vel a(n);
	rep(i, n) { cin >> a[i]; }
	int m = min(n, (int)22);
	int inf = 150000;
	vel ans(m* inf, -1);
	rep(i, (1 << m)) {
		int sum = 0;
		rep(j, m) {
			if ((i & (1 << j))!=0) {
				sum += a[j];
			}
		}
		if (ans[sum] != -1) {
			solve(ans[sum], i,m, a); return 0;
		}
		ans[sum] = i;
	}
	cout << "No" << endl;
	return 0;
}
0