結果

問題 No.1084 積の積
ユーザー kmjpkmjp
提出日時 2020-06-19 22:26:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 1,864 bytes
コンパイル時間 2,229 ms
コンパイル使用メモリ 207,356 KB
実行使用メモリ 9,756 KB
最終ジャッジ日時 2024-07-03 15:02:20
合計ジャッジ時間 7,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,304 KB
testcase_01 AC 4 ms
7,360 KB
testcase_02 AC 4 ms
7,296 KB
testcase_03 AC 4 ms
7,360 KB
testcase_04 AC 216 ms
9,756 KB
testcase_05 AC 5 ms
9,324 KB
testcase_06 AC 216 ms
9,708 KB
testcase_07 AC 4 ms
7,252 KB
testcase_08 AC 4 ms
7,288 KB
testcase_09 AC 12 ms
7,924 KB
testcase_10 AC 4 ms
7,288 KB
testcase_11 AC 11 ms
7,380 KB
testcase_12 AC 115 ms
8,296 KB
testcase_13 AC 260 ms
9,320 KB
testcase_14 AC 86 ms
8,076 KB
testcase_15 AC 78 ms
7,972 KB
testcase_16 AC 301 ms
9,628 KB
testcase_17 AC 105 ms
8,392 KB
testcase_18 AC 188 ms
8,804 KB
testcase_19 AC 260 ms
9,428 KB
testcase_20 AC 52 ms
7,808 KB
testcase_21 AC 86 ms
8,020 KB
testcase_22 AC 64 ms
7,900 KB
testcase_23 AC 149 ms
8,544 KB
testcase_24 AC 134 ms
8,432 KB
testcase_25 AC 259 ms
9,400 KB
testcase_26 AC 298 ms
9,704 KB
testcase_27 AC 299 ms
9,688 KB
testcase_28 AC 300 ms
9,652 KB
testcase_29 AC 299 ms
9,692 KB
testcase_30 AC 300 ms
9,576 KB
testcase_31 AC 299 ms
9,700 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