結果
問題 | No.1084 積の積 |
ユーザー | 沙耶花 |
提出日時 | 2020-06-19 21:45:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,308 bytes |
コンパイル時間 | 2,034 ms |
コンパイル使用メモリ | 206,588 KB |
実行使用メモリ | 12,928 KB |
最終ジャッジ日時 | 2024-07-03 14:13:08 |
合計ジャッジ時間 | 5,619 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 1000000000LL int beki(int a,int b,int M = modulo){ int x = 1; while(b!=0){ if(b&1){ x=((long long)x*a)%M; } a=((long long)a*a)%M; b>>=1; } return x; } int gyakugen(int a){ return beki(a,modulo-2); } template <typename T,typename F> struct segtree{ F func; vector<T> v; int n; T init_value; segtree(int sz,F f,T iv):func(f){ init_value = iv; n=1; while(true){ if(n>=sz)break; n*=2; } v.resize(2*n,init_value); for(int i=n-1;i>=0;i--){ v[i]=func(v[i<<1],v[(i<<1)+1]); } } segtree(vector<T> &x,F f,T iv):func(f){ init_value = iv; n=1; while(true){ if(n>=x.size())break; n*=2; } v.resize(2*n,init_value); for(int i=0;i<x.size();i++){ v[n+i]=x[i]; } for(int i=n-1;i>=0;i--){ v[i]=func(v[i<<1],v[(i<<1)+1]); } } void update(int x,T val){ x+=n; v[x]=val; while(x>0){ x>>=1; v[x]=func(v[x<<1],v[(x<<1)+1]); } } T query(int l,int r){ if(l>=r)return init_value; l+=n; r+=n; T res1 = init_value; T res2 = init_value; while(true){ if(l&1){ res1=func(res1,v[l++]); } if(r&1){ res2=func(v[--r],res2); } if(l>=r)break; l>>=1;r>>=1; } return func(res1,res2); } void show(){ int n = 1; for(int i=1;i<v.size();i++){ for(int j=0;j<n;j++){ if(j!=0)cout<<' '; cout<<v[i+j]; } cout<<endl; i+=n-1; n*=2; } } }; int main(){ int N; cin>>N; vector<long long> A(N); for(int i=0;i<N;i++)cin>>A[i]; //sort(A.begin(),A.end()); if(A[0]==0){ cout<<0<<endl; return 0; } auto f = [](long long a,long long b){ return min(a*b,Inf); }; segtree<long long,decltype(f)> seg(A,f,1LL); vector<long long> S(N,0),D(N,0); for(int i=0;i<N;i++){ int ok = i,ng = N; while(ng-ok>1){ int mid = (ok+ng)/2; if(seg.query(i,mid+1)<Inf){ ok = mid; } else{ ng = mid; } } //cout<<ok<<endl; S[i] = ok-i+1; D[i] --; if(i+(ok-i+1)<N)D[i+(ok-i+1)]++; } long long d = 0; for(int i=0;i<N;i++){ if(i!=0){ S[i] += S[i-1]; S[i] += d; } d += D[i]; } int ans = 1; for(int i=0;i<N;i++){ ans = mod(ans * beki(A[i],S[i])); } cout<<ans<<endl; return 0; }