# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1051582 | dilanyan | Foehn Phenomena (JOI17_foehn_phenomena) | C++17 | 1061 ms | 4700 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.
//-------------dilanyan------------\\
#define _CRT_SECURE_NO_WARNINGS
#include<bits/stdc++.h>
#include<stdio.h>
using namespace std;
//------------------Kargpefines--------------------\\
#define ll long long
#define pb push_back
#define all(u) (u).begin(), (u).end()
#define pqueue priority_queue
#define upper upper_bound
#define lower lower_bound
#define umap unordered_map
#define uset unordered_set
void KarginSet(string name = "") {
ios_base::sync_with_stdio(false); cin.tie(NULL);
if (name.size()) {
freopen((name + ".in").c_str(), "r", stdin);
freopen((name + ".out").c_str(), "w", stdout);
}
}
//-------------------KarginConstants------------------\\
const ll mod = 1e9 + 7;
const ll inf = 2e18;
//-------------------KarginCode-----------------------\\
const int N = 300006, M = 1000005;
ll a[N], pref[N];
void KarginSolve() {
ll n, q, s, t;
cin >> n >> q >> s >> t;
for (int i = 0;i <= n;i++) {
cin >> a[i];
}
pref[0] = 0;
for (int i = 0;i < n;i++) {
if (a[i] < a[i + 1]) pref[i + 1] = pref[i] - s * (a[i + 1] - a[i]);
else pref[i + 1] = pref[i] + t * (a[i] - a[i + 1]);
}
while (q--) {
int l, r, x;
cin >> l >> r >> x;
ll temp = pref[l - 1];
if (a[l - 1] < a[l] + x) temp -= s * (a[l] + x - a[l - 1]);
else temp += t * (a[l - 1] - a[l] - x);
temp += pref[r] - pref[l];
if (r < n) {
if (a[r] + x < a[r + 1]) temp -= s * (a[r + 1] - a[r] - x);
else temp += t * (a[r] + x - a[r + 1]);
temp += pref[n] - pref[r + 1];
}
pref[0] = 0;
for (int i = l;i <= r;i++) a[i] += x;
pref[0] = 0;
for (int i = 0;i < n;i++) {
if (a[i] < a[i + 1]) pref[i + 1] = pref[i] - s * (a[i + 1] - a[i]);
else pref[i + 1] = pref[i] + t * (a[i] - a[i + 1]);
}
cout << temp << '\n';
}
}
int main() {
KarginSet();
int test = 1;
//cin >> test;
while (test--) {
KarginSolve();
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |