結果
| 問題 |
No.1084 積の積
|
| コンテスト | |
| ユーザー |
noisy_noimin
|
| 提出日時 | 2020-06-22 21:19:32 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,054 bytes |
| コンパイル時間 | 1,425 ms |
| コンパイル使用メモリ | 118,628 KB |
| 最終ジャッジ日時 | 2025-01-11 09:27:19 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 RE * 1 |
| other | AC * 23 WA * 1 RE * 3 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
#include <string>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <tuple>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <cassert>
#include <cstdint>
#include <cctype>
#include <numeric>
#include <bitset>
#include <functional>
using namespace std;
using ll = long long;
using Pll = pair<ll, ll>;
using Pii = pair<int, int>;
constexpr int INF = 1 << 30;
constexpr ll LINF = 1LL << 60;
constexpr ll MOD = 1000000007;
constexpr ll MAX = 1000000000;
constexpr long double EPS = 1e-10;
constexpr int dyx[4][2] = {
{ 0, 1}, {-1, 0}, {0,-1}, {1, 0}
};
ll modpow(ll a, ll t) {
if(t < 0) assert(false);
ll ret = 1LL;
while(t){
if(t & 1LL){
ret *= a;
ret %= MOD;
}
a *= a;
a %= MOD;
t >>= 1;
}
return ret;
}
ll modinv(ll a) {
return modpow(a, MOD-2);
}
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
int n;
cin >> n;
vector<ll> a(n+1, 1);
for(int i=1;i<=n;++i) {
cin >> a[i];
}
vector<int> r(n+1, 0);
r[0] = 1;
ll p = 1LL;
for(int i=1;i<=n;++i) {
r[i] = max(i, r[i-1]);
if(r[i] == i) p = 1LL;
while(r[i] <= n) {
if(a[r[i]] > MAX/p) {
break;
} else {
p *= a[r[i]];
++r[i];
}
}
p /= a[i];
}
vector<ll> weighted_product(n+1, 1);
vector<ll> product(n+1, 1);
for(int i=1;i<=n;++i) {
weighted_product[i] = (weighted_product[i-1] * modpow(a[i], n+1-i)) % MOD;
product[i] = (product[i-1] * a[i]) % MOD;
}
ll ans = 1LL;
for(int i=1;i<=n;++i) {
ll tmp = (weighted_product[r[i]-1] * modinv(weighted_product[i-1])) % MOD;
tmp = (tmp * modpow(modinv((product[r[i]-1] * modinv(product[i-1])) % MOD), n+1-r[i])) % MOD;
ans *= tmp;
ans %= MOD;
}
cout << ans << endl;
}
noisy_noimin