結果
問題 | No.1084 積の積 |
ユーザー | kappybar |
提出日時 | 2020-06-19 23:23:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,012 bytes |
コンパイル時間 | 1,769 ms |
コンパイル使用メモリ | 174,844 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 15:47:50 |
合計ジャッジ時間 | 4,335 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 156 ms
6,944 KB |
testcase_06 | AC | 157 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 49 ms
6,940 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 4 ms
6,940 KB |
testcase_12 | AC | 23 ms
6,940 KB |
testcase_13 | AC | 46 ms
6,944 KB |
testcase_14 | AC | 18 ms
6,944 KB |
testcase_15 | AC | 17 ms
6,944 KB |
testcase_16 | AC | 52 ms
6,940 KB |
testcase_17 | AC | 21 ms
6,944 KB |
testcase_18 | AC | 35 ms
6,940 KB |
testcase_19 | AC | 46 ms
6,940 KB |
testcase_20 | AC | 12 ms
6,940 KB |
testcase_21 | AC | 18 ms
6,944 KB |
testcase_22 | AC | 15 ms
6,940 KB |
testcase_23 | AC | 28 ms
6,940 KB |
testcase_24 | AC | 26 ms
6,940 KB |
testcase_25 | AC | 46 ms
6,940 KB |
testcase_26 | AC | 41 ms
6,944 KB |
testcase_27 | AC | 40 ms
6,940 KB |
testcase_28 | AC | 41 ms
6,944 KB |
testcase_29 | AC | 42 ms
6,940 KB |
testcase_30 | AC | 41 ms
6,944 KB |
testcase_31 | AC | 42 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) using namespace std; using ll = long long ; using P = pair<int,int> ; using pll = pair<long long,long long>; constexpr ll INF = 1e9; constexpr long long LINF = 1e17; constexpr int MOD = 1000000007; constexpr double PI = 3.14159265358979323846; int n = 100005; vector<ll> a(n); long long modpow(long long x, long long n) { long long ret = 1; while (n > 0) { if (n & 1) ret = (ret * x) % MOD; x = (x * x) % MOD; n >>= 1; } return ret; } ll dfs(int l,int r){ if(l==r) return 1; if(l+1==r) return a[l]; ll p1 = dfs(l,(l+r)/2); ll p2 = dfs((l+r)/2,r); ll res = (p1 * p2)%MOD; vector<ll> F,L; ll now = 1; int m = (l+r)/2; while(1){ if(m>=r) break; now *= a[m]; m ++; if(now < INF) L.push_back(now); else break; } now = 1; m = (l+r)/2 - 1; while(1){ if(m<l) break; now *= a[m]; m --; if(now < INF) F.push_back(now); else break; } reverse(F.begin(),F.end()); vector<int> cnt(L.size(),0); rep(i,F.size()){ int left = -1,right = L.size(); while(right - left > 1){ int mid = (left + right)/2; if(F[i]*L[mid]<INF) left = mid; else right = mid; } res = (res * modpow(F[i],left+1))%MOD; if(left!=-1) cnt[left] ++; //cout << "left" << left << endl; } int point = 0; for(int i=L.size()-1;i>=0;i--){ int now = cnt[i]; if(i==L.size()-1) cnt[i] = now + point; else cnt[i] = now + cnt[i+1] + point; point += now; } rep(i,L.size()){ res = (res * modpow(a[i+(l+r)/2],cnt[i]))%MOD; } /* rep(i,L.size()){ cout << cnt[i] << " " ; } cout << endl; */ return res; } int main(){ cin >> n; a.resize(n); rep(i,n) cin >> a[i]; cout << dfs(0,n) << endl; return 0; }