#include <bits/stdc++.h>
#define mod 1000000007
using namespace std;
stack <pair<int,int>> S;
int n,v[100005],i,dr[100005],st[100005],x,j,val,Max[100005],mark[100005],nr;
unsigned long long suma[100001],total;
pair <int,int > sor[100005];
long long bin(long long x){
x %= mod;
return ((x*(x+1)) / 2) % mod;
}
long long rectCount(long long x, long long y){
return (bin(x)*bin(y))%mod;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>n;
for(i=1;i<=n;i++){
cin>>v[i];
if(v[i] == v[i-1])
nr++;
sor[i].first = v[i];
sor[i].second = i;
dr[i] = n + 1;
}
sort(sor+1,sor+n+1);
for(i=1;i<=n;i++){
cin>>x;
suma[i] = suma[i-1] % mod + x;
}
for(i=1;i<=n;i++){
x = v[i];
while(S.empty() == false && x<S.top().first){
dr[S.top().second] = i;
S.pop();
}
S.push({x,i});
}
while(S.empty() == false){
S.pop();
}
for(i=n;i>=1;i--){
x = v[i];
while(S.empty() == false && x < S.top().first){
st[S.top().second] = i;
S.pop();
}
S.push({x,i});
}
for(i=1;i<=n;i++){
mark[st[sor[i].second]] = sor[i].first;
mark[dr[sor[i].second]] = sor[i].first;
}
if(nr + 1 != n){
//brut
for(i=1;i<=n;i++){
total += rectCount((suma[dr[sor[i].second]-1] - suma[st[sor[i].second]]) % mod,sor[i].first % mod) % mod;
total -= rectCount((suma[dr[sor[i].second]-1] - suma[st[sor[i].second]]) % mod,Max[sor[i].second] % mod) % mod;
for(j=st[sor[i].second];j<=dr[sor[i].second];j++){
Max[j] = sor[i].first;
}
}
}
else{
//subtask 4
total = rectCount(suma[n],v[1]);
}
cout << total % mod;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
332 KB |
Output is correct |
2 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
332 KB |
Output is correct |
2 |
Correct |
1 ms |
332 KB |
Output is correct |
3 |
Correct |
0 ms |
332 KB |
Output is correct |
4 |
Correct |
0 ms |
332 KB |
Output is correct |
5 |
Correct |
0 ms |
332 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
332 KB |
Output is correct |
2 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
332 KB |
Output is correct |
2 |
Correct |
2 ms |
588 KB |
Output is correct |
3 |
Correct |
16 ms |
1868 KB |
Output is correct |
4 |
Correct |
23 ms |
3408 KB |
Output is correct |
5 |
Correct |
26 ms |
3412 KB |
Output is correct |
6 |
Correct |
0 ms |
332 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
332 KB |
Output is correct |
2 |
Correct |
1 ms |
332 KB |
Output is correct |
3 |
Correct |
4 ms |
588 KB |
Output is correct |
4 |
Correct |
12 ms |
1868 KB |
Output is correct |
5 |
Correct |
23 ms |
3428 KB |
Output is correct |
6 |
Correct |
27 ms |
3480 KB |
Output is correct |
7 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
332 KB |
Output is correct |
2 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
332 KB |
Output is correct |
2 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |