結果

問題 No.856 増える演算
ユーザー QCFiumQCFium
提出日時 2019-10-08 18:03:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,089 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 179,244 KB
実行使用メモリ 12,164 KB
最終ジャッジ日時 2024-04-24 23:09:16
合計ジャッジ時間 17,303 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
10,848 KB
testcase_01 AC 115 ms
10,856 KB
testcase_02 AC 116 ms
10,852 KB
testcase_03 AC 114 ms
10,856 KB
testcase_04 AC 115 ms
10,720 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 115 ms
10,852 KB
testcase_08 AC 115 ms
10,856 KB
testcase_09 WA -
testcase_10 AC 114 ms
10,892 KB
testcase_11 AC 114 ms
10,852 KB
testcase_12 AC 116 ms
10,852 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 117 ms
10,924 KB
testcase_24 AC 119 ms
11,124 KB
testcase_25 AC 116 ms
10,840 KB
testcase_26 AC 114 ms
10,872 KB
testcase_27 AC 117 ms
10,856 KB
testcase_28 AC 117 ms
10,856 KB
testcase_29 AC 118 ms
10,908 KB
testcase_30 AC 116 ms
10,864 KB
testcase_31 AC 116 ms
10,868 KB
testcase_32 AC 119 ms
10,928 KB
testcase_33 AC 123 ms
11,108 KB
testcase_34 AC 134 ms
11,224 KB
testcase_35 AC 126 ms
11,088 KB
testcase_36 AC 137 ms
11,100 KB
testcase_37 AC 130 ms
11,152 KB
testcase_38 AC 116 ms
10,976 KB
testcase_39 AC 117 ms
10,868 KB
testcase_40 AC 121 ms
10,896 KB
testcase_41 AC 122 ms
10,844 KB
testcase_42 AC 135 ms
11,244 KB
testcase_43 AC 123 ms
10,928 KB
testcase_44 WA -
testcase_45 AC 118 ms
10,968 KB
testcase_46 AC 124 ms
10,992 KB
testcase_47 AC 121 ms
10,980 KB
testcase_48 AC 127 ms
11,056 KB
testcase_49 AC 124 ms
11,068 KB
testcase_50 AC 130 ms
11,144 KB
testcase_51 AC 132 ms
11,140 KB
testcase_52 AC 135 ms
11,164 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 174 ms
11,444 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 159 ms
11,448 KB
testcase_59 WA -
testcase_60 AC 149 ms
11,236 KB
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 189 ms
11,544 KB
testcase_69 AC 188 ms
11,640 KB
testcase_70 WA -
testcase_71 AC 196 ms
11,704 KB
testcase_72 WA -
testcase_73 WA -
testcase_74 AC 226 ms
12,036 KB
testcase_75 WA -
testcase_76 AC 222 ms
12,036 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 AC 223 ms
12,040 KB
testcase_80 AC 227 ms
12,032 KB
testcase_81 WA -
testcase_82 AC 169 ms
12,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

int pow(int a, int b, int mod) {
	int res = 1;
	for (; b; b >>= 1) {
		if (b & 1) res = (int64_t) res * a % mod;
		a = (int64_t) a * a % mod;
	}
	return res;
}
int inv(int i, int mod) { return pow(i, mod - 2, mod); }

template<int mod, int proot> struct NTT {
	int get_mod() { return mod; }
	void ntt(std::vector<int> &a, bool inverse) {
		int n = a.size();
		assert((n & -n) == n);
		int h = pow(proot, (mod - 1) / n, mod);
		if (inverse) h = inv(h, mod);
		
		for (int i = 0, j = 1; j < n - 1; j++) {
			for (int k = n >> 1; k > (i ^= k); k >>= 1);
			if (j < i) std::swap(a[i], a[j]);
		}
		for (int i = 1; i < n; i <<= 1) {
			int base = pow(h, n / i / 2, mod);
			int w = 1;
			for (int j = 0; j < i; j++) {
				for (int k = j; k < n; k += i << 1) {
					int u = a[k];
					int d = (int64_t) a[k + i] * w % mod;
					a[k] = u + d;
					if (a[k] >= mod) a[k] -= mod;
					a[k + i] = u - d;
					if (a[k + i] < 0) a[k + i] += mod;
				}
				w = (int64_t) w * base % mod;
			}
		}
		if (inverse) {
			int ninv = inv(a.size(), mod);
			for (auto &i : a) i = (int64_t) i * ninv % mod;
		}
	}
	std::vector<int> conv(const std::vector<int> a_, const std::vector<int> b_) {
		std::vector<int> a = a_, b = b_;
		size_t size = 1;
		for (; size < a_.size() + b_.size(); size <<= 1);
		a.resize(size);
		b.resize(size);
		ntt(a, false);
		ntt(b, false);
		for (size_t i = 0; i < size; i++) a[i] = (int64_t) a[i] * b[i] % mod;
		ntt(a, true);
		a.resize(a_.size() + b_.size() - 1);
		return a;
	}
};
#define MOD 1000000007

std::vector<int64_t> conv(const std::vector<int> a, const std::vector<int> b) {
	NTT<998244353, 3> ntt1;
	NTT<469762049, 3> ntt2;
	auto r0 = ntt1.conv(a, b);
	auto r1 = ntt2.conv(a, b);
	int n = r0.size();
	std::vector<int64_t> res;
	for (int i = 0; i < n; i++) {
		int64_t cur = r0[i];
		while (cur % 469762049 != r1[i]) cur += 998244353;
		res.push_back(cur);
	}
	return res;
}

int main() {
	int n = ri();
	int a[n];
	for (int i = 0; i < n; i++) a[i] = ri();
	
	std::multiset<std::pair<int, int> > all;
	for (int i = 0; i < n; i++) all.insert({a[i], i});
	std::pair<int, int> optimal;
	double min = 1000000000;
	for (int i = 0; i < n; i++) {
		all.erase(all.find({a[i], i}));
		double cur = log(a[i]) * all.begin()->first;
		if (min > cur) min = cur, optimal = {i, all.begin()->second};
	}
	
	int64_t sum[n];
	sum[n - 1] = 0;
	for (int i = n - 2; i >= 0; i--) sum[i] = sum[i + 1] + a[i + 1];
	int res = 1;
	for (int i = 0; i < n; i++) res = (int64_t) res * pow(a[i], sum[i] % (MOD - 1), MOD) % MOD;
	
	std::vector<int> num(100001);
	for (int i = 0; i < n; i++) num[a[i]]++;
	auto conved = conv(num, num);
	for (int i = 0; i < n; i++) conved[a[i] + a[i]]--;
	for (int i = 1; i <= 200000; i++) assert(conved[i] % 2 == 0), conved[i] >>= 1, res = (int64_t) res * pow(i, conved[i] % (MOD - 1), MOD) % MOD;
	res = (int64_t) res * inv((int64_t) (a[optimal.first] + a[optimal.second]) * pow(a[optimal.first], a[optimal.second], MOD) % MOD, MOD) % MOD;
	
	std::cout << res << std::endl;
	
	return 0;
}
0