結果

問題 No.856 増える演算
ユーザー chocoruskchocorusk
提出日時 2019-07-26 22:38:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 117 ms / 3,153 ms
コード長 2,734 bytes
コンパイル時間 1,123 ms
コンパイル使用メモリ 111,196 KB
実行使用メモリ 23,044 KB
最終ジャッジ日時 2024-07-02 08:05:35
合計ジャッジ時間 9,220 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
22,868 KB
testcase_01 AC 56 ms
22,908 KB
testcase_02 AC 57 ms
22,860 KB
testcase_03 AC 59 ms
22,904 KB
testcase_04 AC 59 ms
22,876 KB
testcase_05 AC 58 ms
22,904 KB
testcase_06 AC 57 ms
22,784 KB
testcase_07 AC 56 ms
22,700 KB
testcase_08 AC 55 ms
22,856 KB
testcase_09 AC 57 ms
22,844 KB
testcase_10 AC 58 ms
22,844 KB
testcase_11 AC 56 ms
22,860 KB
testcase_12 AC 53 ms
22,852 KB
testcase_13 AC 54 ms
22,888 KB
testcase_14 AC 53 ms
22,892 KB
testcase_15 AC 56 ms
22,916 KB
testcase_16 AC 54 ms
22,872 KB
testcase_17 AC 54 ms
22,900 KB
testcase_18 AC 55 ms
22,812 KB
testcase_19 AC 54 ms
22,920 KB
testcase_20 AC 55 ms
22,828 KB
testcase_21 AC 55 ms
22,848 KB
testcase_22 AC 53 ms
22,920 KB
testcase_23 AC 54 ms
22,872 KB
testcase_24 AC 58 ms
22,912 KB
testcase_25 AC 59 ms
22,828 KB
testcase_26 AC 57 ms
22,904 KB
testcase_27 AC 55 ms
22,840 KB
testcase_28 AC 55 ms
22,896 KB
testcase_29 AC 58 ms
22,708 KB
testcase_30 AC 57 ms
22,880 KB
testcase_31 AC 56 ms
22,828 KB
testcase_32 AC 58 ms
22,888 KB
testcase_33 AC 62 ms
22,884 KB
testcase_34 AC 67 ms
22,872 KB
testcase_35 AC 63 ms
22,924 KB
testcase_36 AC 67 ms
22,888 KB
testcase_37 AC 64 ms
22,768 KB
testcase_38 AC 57 ms
22,860 KB
testcase_39 AC 60 ms
22,896 KB
testcase_40 AC 60 ms
22,904 KB
testcase_41 AC 58 ms
22,880 KB
testcase_42 AC 66 ms
22,880 KB
testcase_43 AC 59 ms
22,864 KB
testcase_44 AC 58 ms
22,872 KB
testcase_45 AC 56 ms
22,828 KB
testcase_46 AC 60 ms
22,908 KB
testcase_47 AC 57 ms
22,864 KB
testcase_48 AC 63 ms
22,860 KB
testcase_49 AC 64 ms
22,916 KB
testcase_50 AC 65 ms
22,880 KB
testcase_51 AC 68 ms
22,820 KB
testcase_52 AC 68 ms
22,964 KB
testcase_53 AC 91 ms
22,892 KB
testcase_54 AC 75 ms
22,900 KB
testcase_55 AC 89 ms
22,816 KB
testcase_56 AC 72 ms
22,772 KB
testcase_57 AC 93 ms
22,912 KB
testcase_58 AC 81 ms
22,844 KB
testcase_59 AC 102 ms
22,940 KB
testcase_60 AC 78 ms
22,880 KB
testcase_61 AC 105 ms
22,880 KB
testcase_62 AC 107 ms
22,884 KB
testcase_63 AC 59 ms
22,884 KB
testcase_64 AC 96 ms
22,888 KB
testcase_65 AC 69 ms
23,004 KB
testcase_66 AC 80 ms
22,876 KB
testcase_67 AC 87 ms
22,848 KB
testcase_68 AC 100 ms
22,912 KB
testcase_69 AC 96 ms
22,824 KB
testcase_70 AC 108 ms
22,772 KB
testcase_71 AC 102 ms
22,864 KB
testcase_72 AC 95 ms
22,852 KB
testcase_73 AC 117 ms
23,044 KB
testcase_74 AC 117 ms
22,892 KB
testcase_75 AC 113 ms
22,860 KB
testcase_76 AC 113 ms
22,888 KB
testcase_77 AC 117 ms
22,776 KB
testcase_78 AC 115 ms
22,992 KB
testcase_79 AC 116 ms
22,928 KB
testcase_80 AC 111 ms
22,716 KB
testcase_81 AC 112 ms
22,892 KB
testcase_82 AC 100 ms
22,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
const ll MOD=1e9+7;
ll powmod(ll a, ll k){
    ll ap=a, ans=1;
    while(k){
        if(k&1){
            ans*=ap;
            ans%=MOD;
        }
        ap=ap*ap;
        ap%=MOD;
        k>>=1;
    }
    return ans;
}
ll inv(ll a){
	return powmod(a, MOD-2);
}
typedef complex<double> C;
const double PI=acos(-1.0);
vector<C> tmp;
size_t sz;
vector<C> fft(vector<C> a, bool inv=false){
    size_t mask=sz-1;
    size_t p=0;
    for(size_t i=sz>>1; i>0; i>>=1){
        auto& cur=((p&1) ? tmp : a);
        auto& nex=((p&1) ? a : tmp);
        C e=polar(1.0, 2*PI*i*(inv ? -1.0 : 1.0)/sz);
        C w=1;
        for(size_t j=0; j<sz; j+=i){
            for(size_t k=0; k<i; k++){
                nex[j+k]=cur[((j<<1)&mask)+k]+w*cur[(((j<<1)+i)&mask)+k];
            }
            w*=e;
        }
        p++;
    }
    if(p&1) swap(a, tmp);
    if(inv) for(size_t i=0; i<sz; i++) a[i]/=sz;
    return a;
}
vector<ll> convolute(vector<int> a, vector<int> b){
    size_t m=a.size()+b.size()-1;
    sz=1;
    while(sz<m) sz<<=1;
    tmp.resize(sz);
    vector<C> A(sz), B(sz);
    for(size_t i=0; i<a.size(); i++) A[i]=C{(double)a[i], 0};
    for(size_t i=0; i<b.size(); i++) B[i]=C{(double)b[i], 0};
    A=fft(A); B=fft(B);
    for(size_t i=0; i<sz; i++) A[i]*=B[i];
    A=fft(A, true);
    vector<ll> ans(m);
    for(size_t i=0; i<m; i++) ans[i]=round(A[i].real());
    return ans;
}
bool comp(P x, P y){
     return (double)y.second*log((double)y.first)-(double)x.second*log((double)x.first)+log((double)(y.first+y.second))-log((double)(x.first+x.second))>0;
}
int main()
{
    int n; cin>>n;
    int a[100010];
    vector<int> c(100001);
    for(int i=0; i<n; i++){
        cin>>a[i];
        c[a[i]]++;
    }
    ll s=1;
    ll p=0;
    for(int i=n-1; i>=0; i--){
        (s*=powmod(a[i], p))%=MOD;
        p+=a[i];
    }
    vector<ll> v=convolute(c, c);
    for(int i=0; i<n; i++){
        v[2*a[i]]--;
    }
    for(ll i=2; i<=200000; i++){
        v[i]/=2;
        (s*=powmod(i, v[i]))%=MOD;
    }
    int mn=a[n-1];
    P q[100010];
    for(int i=n-2; i>=0; i--){
        q[i]=P(a[i], mn);
        mn=min(mn, a[i]);
    }
    P p0=*min_element(q, q+n-1, comp);
    ll m=(p0.first+p0.second)*powmod(p0.first, p0.second)%MOD;
    (s*=inv(m))%=MOD;
    cout<<s<<endl;
    return 0;
}
0