結果
問題 | No.856 増える演算 |
ユーザー | pekempey |
提出日時 | 2019-07-26 22:15:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,955 bytes |
コンパイル時間 | 1,864 ms |
コンパイル使用メモリ | 181,180 KB |
実行使用メモリ | 63,384 KB |
最終ジャッジ日時 | 2024-07-02 07:37:43 |
合計ジャッジ時間 | 14,089 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 93 ms
62,696 KB |
testcase_01 | AC | 95 ms
62,688 KB |
testcase_02 | AC | 94 ms
62,756 KB |
testcase_03 | WA | - |
testcase_04 | AC | 95 ms
62,896 KB |
testcase_05 | AC | 95 ms
62,720 KB |
testcase_06 | WA | - |
testcase_07 | AC | 95 ms
62,828 KB |
testcase_08 | AC | 95 ms
62,708 KB |
testcase_09 | AC | 95 ms
62,708 KB |
testcase_10 | AC | 94 ms
62,740 KB |
testcase_11 | AC | 94 ms
62,760 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 93 ms
62,828 KB |
testcase_20 | AC | 94 ms
62,744 KB |
testcase_21 | AC | 94 ms
62,900 KB |
testcase_22 | AC | 94 ms
62,720 KB |
testcase_23 | AC | 95 ms
62,752 KB |
testcase_24 | AC | 96 ms
62,832 KB |
testcase_25 | AC | 96 ms
62,816 KB |
testcase_26 | AC | 94 ms
62,752 KB |
testcase_27 | AC | 94 ms
62,692 KB |
testcase_28 | AC | 95 ms
62,856 KB |
testcase_29 | AC | 95 ms
62,772 KB |
testcase_30 | AC | 96 ms
62,772 KB |
testcase_31 | AC | 95 ms
62,764 KB |
testcase_32 | AC | 96 ms
62,860 KB |
testcase_33 | AC | 99 ms
62,768 KB |
testcase_34 | AC | 107 ms
62,936 KB |
testcase_35 | AC | 101 ms
62,928 KB |
testcase_36 | AC | 104 ms
62,868 KB |
testcase_37 | AC | 104 ms
62,848 KB |
testcase_38 | AC | 95 ms
62,724 KB |
testcase_39 | AC | 96 ms
62,816 KB |
testcase_40 | AC | 99 ms
62,744 KB |
testcase_41 | AC | 97 ms
62,852 KB |
testcase_42 | AC | 106 ms
62,816 KB |
testcase_43 | AC | 100 ms
62,984 KB |
testcase_44 | AC | 96 ms
62,764 KB |
testcase_45 | AC | 96 ms
62,736 KB |
testcase_46 | AC | 100 ms
62,792 KB |
testcase_47 | AC | 100 ms
62,732 KB |
testcase_48 | AC | 105 ms
62,788 KB |
testcase_49 | AC | 102 ms
62,748 KB |
testcase_50 | AC | 104 ms
62,948 KB |
testcase_51 | AC | 108 ms
62,796 KB |
testcase_52 | AC | 110 ms
62,900 KB |
testcase_53 | WA | - |
testcase_54 | AC | 120 ms
62,780 KB |
testcase_55 | WA | - |
testcase_56 | AC | 118 ms
62,788 KB |
testcase_57 | AC | 139 ms
62,984 KB |
testcase_58 | AC | 131 ms
62,880 KB |
testcase_59 | AC | 157 ms
63,060 KB |
testcase_60 | WA | - |
testcase_61 | AC | 159 ms
63,136 KB |
testcase_62 | AC | 150 ms
62,976 KB |
testcase_63 | AC | 101 ms
62,812 KB |
testcase_64 | AC | 146 ms
63,044 KB |
testcase_65 | WA | - |
testcase_66 | AC | 125 ms
62,956 KB |
testcase_67 | WA | - |
testcase_68 | AC | 148 ms
62,976 KB |
testcase_69 | AC | 149 ms
63,140 KB |
testcase_70 | AC | 161 ms
63,116 KB |
testcase_71 | AC | 149 ms
63,028 KB |
testcase_72 | WA | - |
testcase_73 | AC | 166 ms
63,188 KB |
testcase_74 | AC | 166 ms
63,316 KB |
testcase_75 | AC | 168 ms
63,308 KB |
testcase_76 | AC | 170 ms
63,096 KB |
testcase_77 | AC | 169 ms
63,084 KB |
testcase_78 | WA | - |
testcase_79 | AC | 170 ms
63,156 KB |
testcase_80 | AC | 169 ms
63,116 KB |
testcase_81 | AC | 168 ms
63,200 KB |
testcase_82 | AC | 147 ms
63,096 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); i++) #define repr(i, n) for (int i = (n) - 1; i >= 0; i--) using namespace std; using ll = long long; constexpr int MOD = 1000000007; class mint { int n; public: mint(int n_ = 0) : n(n_) {} explicit operator int() { return n; } friend mint operator-(mint a) { return -a.n + MOD * (a.n != 0); } friend mint operator+(mint a, mint b) { int x = a.n + b.n; return x - (x >= MOD) * MOD; } friend mint operator-(mint a, mint b) { int x = a.n - b.n; return x + (x < 0) * MOD; } friend mint operator*(mint a, mint b) { return (long long)a.n * b.n % MOD; } friend mint &operator+=(mint &a, mint b) { return a = a + b; } friend mint &operator-=(mint &a, mint b) { return a = a - b; } friend mint &operator*=(mint &a, mint b) { return a = a * b; } friend bool operator==(mint a, mint b) { return a.n == b.n; } friend bool operator!=(mint a, mint b) { return a.n != b.n; } friend istream &operator>>(istream &i, mint &a) { return i >> a.n; } friend ostream &operator<<(ostream &o, mint a) { return o << a.n; } }; template<int N> class FFT { using C = complex<double>; C rots[N]; public: FFT() { const double pi = acos(-1); for (int i = 0; i < N / 2; i++) { rots[i + N / 2].real(cos(2 * pi / N * i)); rots[i + N / 2].imag(sin(2 * pi / N * i)); } for (int i = N / 2 - 1; i >= 1; i--) { rots[i] = rots[i * 2]; } } private: inline static C mul(C x, C y) { return C(x.real() * y.real() - x.imag() * y.imag(), x.real() * y.imag() + x.imag() * y.real()); } void fft(vector<C> &a, bool rev) { const int n = a.size(); int i = 0; for (int j = 1; j < n - 1; j++) { for (int k = n >> 1; k > (i ^= k); k >>= 1); if (j < i) swap(a[i], a[j]); } for (int i = 1; i < n; i *= 2) { for (int j = 0; j < n; j += i * 2) { for (int k = 0; k < i; k++) { C s = a[j + k + 0]; C t = mul(a[j + k + i], rots[i + k]); a[j + k + 0] = s + t; a[j + k + i] = s - t; } } } if (rev) { reverse(a.begin() + 1, a.end()); for (int i = 0; i < n; i++) { a[i] *= 1.0 / n; } } } public: vector<long long> convolution(vector<long long> a, vector<long long> b) { int t = 1; while (t < a.size() + b.size() - 1) t *= 2; vector<C> z(t); for (int i = 0; i < a.size(); i++) z[i].real(a[i]); for (int i = 0; i < b.size(); i++) z[i].imag(b[i]); fft(z, false); vector<C> w(t); for (int i = 0; i < t; i++) { C p = (z[i] + conj(z[(t - i) % t])) * C(0.5, 0); C q = (z[i] - conj(z[(t - i) % t])) * C(0, -0.5); w[i] = p * q; } fft(w, true); vector<long long> ans(a.size() + b.size() - 1); for (int i = 0; i < ans.size(); i++) { ans[i] = round(w[i].real()); } return ans; } vector<mint> convolution(vector<mint> a, vector<mint> b) { int t = 1; while (t < a.size() + b.size() - 1) t *= 2; vector<C> A(t), B(t); for (int i = 0; i < a.size(); i++) A[i] = C((int)a[i] & 0x7fff, (int)a[i] >> 15); for (int i = 0; i < b.size(); i++) B[i] = C((int)b[i] & 0x7fff, (int)b[i] >> 15); fft(A, false); fft(B, false); vector<C> X(t), Y(t); for (int i = 0; i < t; i++) { int j = (t - i) % t; C AL = (A[i] + conj(A[j])) * C(0.5, 0); C AH = (A[i] - conj(A[j])) * C(0, -0.5); C BL = (B[i] + conj(B[j])) * C(0.5, 0); C BH = (B[i] - conj(B[j])) * C(0, -0.5); X[i] = AL * BL + AH * BL * C(0, 1); Y[i] = AL * BH + AH * BH * C(0, 1); } fft(X, true); fft(Y, true); vector<mint> ans(a.size() + b.size() - 1); for (int i = 0; i < ans.size(); i++) { long long l = (long long)round(X[i].real()) % MOD; long long m = ((long long)round(X[i].imag()) + (long long)round(Y[i].real())) % MOD; long long h = (long long)round(Y[i].imag()) % MOD; ans[i] = (l + (m << 15) + (h << 30)) % MOD; } return ans; } }; mint modinv(mint n) { int a = (int)n; int b = MOD; int s = 1; int t = 0; while (b != 0) { int q = a / b; a -= q * b; s -= q * t; swap(a, b); swap(s, t); } if (s < 0) s += MOD; return s; } mint modpow(mint a, long long b) { mint res = 1; while (b > 0) { if (b & 1) res *= a; a *= a; b >>= 1; } return res; } FFT<1 << 21> fft; int main() { int n; cin >> n; vector<ll> f(1<<18); vector<int> a(n); rep(i, n) cin >> a[i], f[a[i]]++; f = fft.convolution(f, f); rep(i, n) f[2*a[i]]--; mint ans = 1; rep(i, 1 << 18) ans *= modpow(i, f[i] / 2); ll s = 0; rep(i, n) s += a[i]; rep(i, n) { s -= a[i]; ans *= modpow(a[i], s); } sort(a.begin(), a.end()); if (a[1] * log(a[0]) < a[0] * log(a[1])) { ans *= modinv((a[0] + a[1]) * modpow(a[0], a[1])); } else { ans *= modinv((a[0] + a[1]) * modpow(a[1], a[0])); } cout << ans << endl; }