結果
問題 | No.2950 Max Min Product |
ユーザー | kmjp |
提出日時 | 2024-10-25 23:39:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,449 bytes |
コンパイル時間 | 2,932 ms |
コンパイル使用メモリ | 215,716 KB |
実行使用メモリ | 40,080 KB |
最終ジャッジ日時 | 2024-10-25 23:39:31 |
合計ジャッジ時間 | 14,480 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
36,008 KB |
testcase_01 | AC | 14 ms
36,040 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 14 ms
36,024 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #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 FORR2(x,y,arr) for(auto& [x,y]:arr) #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 T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N; ll A[202020]; const ll mo=998244353; template<class V,int NV> class SegTree_Mul { public: vector<V> sum,mul; // sum stores val after muladd SegTree_Mul(){sum.resize(NV*2,1); mul.resize(NV*2,1);}; V getval(int x,int y,int l=0,int r=NV,int k=1) { if(r<=x || y<=l) return 0; if(x<=l && r<=y) return sum[k]; x=max(x,l); y=min(y,r); V ret=getval(x,y,l,(l+r)/2,k*2)+getval(x,y,(l+r)/2,r,k*2+1); return (ret*mul[k])%mo; } void propagate(int k,int s) { (mul[k*2]*=mul[k])%=mo; (sum[k*2]*=mul[k])%=mo; (mul[k*2+1]*=mul[k])%=mo; (sum[k*2+1]*=mul[k])%=mo; mul[k]=1; } void domul(int x,int y,V v,int l=0,int r=NV,int k=1) { if(l>=r) return; if(x<=l && r<=y) { (mul[k]*=v)%=mo; (sum[k]*=v)%=mo; } else if(l < y && x < r) { propagate(k,r-l); domul(x,y,v,l,(l+r)/2,k*2); domul(x,y,v,(l+r)/2,r,k*2+1); sum[k]=(sum[k*2]+sum[k*2+1])%mo; } } }; SegTree_Mul<ll,1<<20> st; 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; } vector<pair<int,int>> MA,MI; void solve() { int i,j,k,l,r,x,y; string s; MA={{1<<30,N}}; MI={{0,N}}; ll ret=0; cin>>N; FOR(i,N) { cin>>A[i]; } for(i=N-1;i>=0;i--) { st.domul(i,i+1,A[i]*A[i]%mo); while(MA.back().first<A[i]) { x=MA.back().first; y=MA.back().second; MA.pop_back(); st.domul(y,MA.back().second,modpow(x)*A[i]%mo); } while(MI.back().first>A[i]) { x=MI.back().first; y=MI.back().second; MI.pop_back(); st.domul(y,MI.back().second,modpow(x)*A[i]%mo); } MA.push_back({A[i],i}); MI.push_back({A[i],i}); (ret+=st.getval(i,N))%=mo; } 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; }