# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
710110 | Spade1 | Fancy Fence (CEOI20_fancyfence) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
//#include "grader.h"
#define pii pair<int, int>
#define pll pair<long long, long long>
#define ll long long
#define ld long double
#define st first
#define nd second
#define pb push_back
#define INF INT_MAX
using namespace std;
const int N = 1e5 + 10;
const int M = 1e9+7;
ll h[N], w[N];
stack<pii> s;
ll ans;
ll add(ll a, ll b) {return ((((a%M)+(b%M))%M)+M)%M;}
ll mul(ll a, ll b) {return (a%M*b%M)%M;}
ll power(ll a, ll b) {
if (b==0) return 1;
ll ret = power(a, b/2);
if (b&1) return mul(ret, mul(ret, a));
else return mul(ret, ret);
}
void solve() {
int n; cin >> n;
for (int i = 1; i <= n; ++i) cin >> h[i];
for (int i = 1; i <= n; ++i) cin >> w[i];
s.push({0, 0});
ll inv = power(2, M-2);
for (int i = 1; i <= n; ++i) {
while (s.top().st > h[i]) {
auto [H, W] = s.top(); s.pop();
if (s.top().st > h[i]) {
H -= s.top().st;
auto [HH, WW] = s.top(); s.pop();
s.push({HH, add(WW, W)});
ans = add(ans, mul(mul(H, s.top().st), mul(mul(W, W+1), inv)));
}
else {
H -= h[i];
s.push({h[i], W});
ans = add(ans, mul(mul(H, h[i]), mul(mul(W, W+1), inv)));
}
ans = add(ans, mul(mul(mul(H, H+1), inv), mul(mul(W, W+1), inv)));
}
if (s.top().st == h[i]) {
auto [HH, WW] = s.top(); s.pop();
s.push({HH, add(WW, w[i])});
}
else
s.push({h[i], w[i]});
}
while (s.size() > 1) {
auto [H, W] = s.top(); s.pop();
H -= s.top().st;
auto [HH, WW] = s.top(); s.pop();
s.push({HH, add(WW + W)});
ans = add(ans, mul(mul(H, s.top().st), mul(mul(W, W+1), inv)));
ans = add(ans, mul(mul(mul(H, H+1), inv), mul(mul(W, W+1), inv)));
}
cout << ans << '\n';
}
int main() {
ios_base::sync_with_stdio(0); cin.tie(NULL);
int t = 1;
// cin >> t;
while (t--) {
solve();
}
return 0;
}