이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Only GOD
// believe in yourself
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
#define F first
#define S second
#define pb push_back
#define all(x) x.begin(), x.end()
#define bit(x, y) ((x >> y)&1)
#define sz(x) (int)x.size()
#define kill(x) return cout << x << '\n', void()
#define KILL(x) return cout << x << '\n', 0
#define int ll
const int N = 2e5+10;
const int INF = 1e9;
const int MOD = 1e9+7;
int mul(int a, int b){
a %= MOD;
b %= MOD;
return (a*b)%MOD;
}
int add(int a, int b){
return (a+b+MOD)%MOD;
}
int dp[N], h[N], w[N];
int inv;
int f(int n){
return mul(mul(n, n+1)%MOD, inv)%MOD;
}
int pw(int a, int b){
int res = 1;
while(b){
if(b & 1)
res = mul(a, res);
a = mul(a, a);
b >>= 1;
}
return res;
}
int32_t main(){
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int n;
cin >> n;
inv = pw(2, MOD-2);
bool fe = 1;
for(int i = 1; i <= n; i++){
cin >> h[i];
if(i > 1 && h[i] != h[i-1]){
fe = 0;
}
}
int ss = 0;
for(int i = 1; i <= n;i++){
cin >> w[i];
ss += w[i];
}
if(fe){
cout << mul(f(ss), f(h[1]));
return 0;
}
int ans = 0;
if(n <= 1000){
for(int i = 1; i <= n; i++){
int mn = h[i];
dp[i] = mul(w[i], f(h[i]));
dp[i] = add(dp[i], mul(f(w[i]-1), f(h[i])));
int res = 0;
for(int j = i-1; j >= 1; j--){
mn = min(mn, h[j]);
res = add(res,mul(w[i], f(mn)));
}
dp[i] = add(dp[i], mul(res, w[i]));
ans = add(ans, dp[i]);
}
KILL(ans);
}
else if(is_sorted(h+1, h+n+1)){
for(int i = 1; i <= n; i++){
dp[i] = mul(f(w[i]), f(h[i]));
dp[i] = add(mul(dp[i-1], w[i]), dp[i]);
ans = add(ans, dp[i]);
}
KILL(ans);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |