結果

問題 No.1084 積の積
ユーザー 👑 kmjpkmjp
提出日時 2020-06-19 22:26:31
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 1,864 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 202,852 KB
実行使用メモリ 9,624 KB
最終ジャッジ日時 2023-09-16 14:43:34
合計ジャッジ時間 7,663 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,944 KB
testcase_01 AC 3 ms
7,156 KB
testcase_02 AC 3 ms
6,984 KB
testcase_03 AC 4 ms
7,076 KB
testcase_04 AC 212 ms
9,508 KB
testcase_05 AC 4 ms
7,060 KB
testcase_06 AC 213 ms
9,504 KB
testcase_07 AC 4 ms
7,136 KB
testcase_08 AC 3 ms
7,008 KB
testcase_09 AC 11 ms
7,392 KB
testcase_10 AC 3 ms
6,988 KB
testcase_11 AC 10 ms
6,988 KB
testcase_12 AC 112 ms
8,316 KB
testcase_13 AC 254 ms
9,240 KB
testcase_14 AC 85 ms
8,008 KB
testcase_15 AC 77 ms
7,832 KB
testcase_16 AC 293 ms
9,500 KB
testcase_17 AC 105 ms
8,048 KB
testcase_18 AC 184 ms
8,724 KB
testcase_19 AC 259 ms
9,240 KB
testcase_20 AC 51 ms
7,768 KB
testcase_21 AC 85 ms
7,920 KB
testcase_22 AC 64 ms
7,708 KB
testcase_23 AC 147 ms
8,240 KB
testcase_24 AC 131 ms
8,248 KB
testcase_25 AC 257 ms
9,220 KB
testcase_26 AC 297 ms
9,484 KB
testcase_27 AC 294 ms
9,512 KB
testcase_28 AC 291 ms
9,500 KB
testcase_29 AC 295 ms
9,624 KB
testcase_30 AC 294 ms
9,564 KB
testcase_31 AC 298 ms
9,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------



template<class V,int NV> class SegTree_1 {
public:
	vector<V> val;
	static V const def=0;
	V comp(V l,V r){ return min(1LL<<30,l*r);};
	
	SegTree_1(){val=vector<V>(NV*2,1);};
	V getval(int x,int y,int l=0,int r=NV,int k=1) { // x<=i<y
		if(r<=x || y<=l) return 1;
		if(x<=l && r<=y) return val[k];
		return comp(getval(x,y,l,(l+r)/2,k*2),getval(x,y,(l+r)/2,r,k*2+1));
	}
	void update(int entry, V v) {
		entry += NV;
		val[entry]=v; //上書きかチェック
		while(entry>1) entry>>=1, val[entry]=comp(val[entry*2],val[entry*2+1]);
	}
};

int N;
ll A[101010];
ll B[101010];
ll C[101010];
const ll mo=1000000007;

ll modpow(ll a, ll n = mo-2) {
	ll r=1;a%=mo;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}

SegTree_1<ll,1<<18> st;
void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) {
		cin>>A[i];
		if(A[i]==0) return _P("0\n");
		st.update(i,A[i]);
	}
	
	FOR(i,N) {
		x=i+1;
		for(j=20;j>=0;j--) {
			y=x+(1<<j);
			if(y>N) continue;
			if(st.getval(i,y)<1000000000) x=y;
		}
		j=x-i;
		B[i]+=j;
		C[i]++;
		C[i+j]--;
	}
	
	ll cur=0;
	int dec=0;
	ll ret=1;
	FOR(i,N) {
		cur+=B[i];
		dec+=C[i];
		ret=ret*modpow(A[i],cur)%mo;
		cur-=dec;
	}
	cout<<ret<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0